Created
September 23, 2017 15:16
-
-
Save denisidoro/a68116646cac409e6690c31fddb4f129 to your computer and use it in GitHub Desktop.
Dark Riemann
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Background */ | |
body, #event-pane { | |
background: #333333; | |
color: white; | |
} | |
li.button, input.server, div.add.button { | |
background-color: #8BC34A !important; | |
border: 0px solid green !important; | |
border-radius: 3px; | |
color: black; | |
} | |
li.button.current { | |
border: 1px solid white !important; | |
} | |
/* Scrollbar */ | |
::-webkit-scrollbar-track { | |
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); | |
border-radius: 10px; | |
} | |
::-webkit-scrollbar { | |
width: 8px; | |
height: 8px; | |
} | |
::-webkit-scrollbar-thumb { | |
border-radius: 8px; | |
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); | |
background-color: #8BC34A; | |
} | |
/* Status colors */ | |
.state.ok, .state.okay, .bar.ok, .bar.okay { | |
background: #4CAF50; | |
} | |
.state.warning, .state.warn, .bar.warning, .bar.warn { | |
background: #FF9800; | |
color: #000; | |
} | |
.state.critical, .state.failure, .state.err, .bar.critical, .bar.failure, .bar.err { | |
background: #F44336; | |
color: #000; | |
} | |
/* Radio buttons */ | |
div.server { | |
visibility: collapse; | |
} | |
/* Toolbar */ | |
div#view { | |
margin-top: 20px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment