Last active
July 15, 2020 18:52
-
-
Save mikesprague/74e8a5ad709405f8758a to your computer and use it in GitHub Desktop.
Dark/night user style for Free Code Camp in Chrome (WIP)
This file contains 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
body { | |
background: #222 !important; | |
color: #969696; | |
} | |
code { | |
padding: 2px 4px !important; | |
} | |
a:hover { | |
color: #999; | |
} | |
.navbar { | |
background: #111; | |
} | |
.navbar-right { | |
background: #111; | |
} | |
.panel-heading { | |
background: #111 !important; | |
border-color: #111 !important; | |
} | |
.panel-info { | |
border-color: #111; | |
} | |
.panel-body { | |
background-color: #222 | |
} | |
td { | |
color: white !important; | |
} | |
.cm-s-monokai.CodeMirror { | |
background-color: #333 !important; | |
} | |
#mainEditorPanel { | |
background: #0c0c0c !important; | |
} | |
.text-center.map-fixed-header { | |
background: #222 !important; | |
} | |
.row ng-scope { | |
background: #0c0c0c !important; | |
} | |
.table-striped > tbody > tr:nth-child(odd) { | |
background-color: #999; | |
} | |
::-webkit-scrollbar { | |
max-width: 10px !important; | |
max-height: 10px !important; | |
background: #181818 !important; | |
} | |
::-webkit-scrollbar-track, ::-webkit-scrollbar-corner { | |
background: #181818 !important; | |
} | |
::-webkit-scrollbar-thumb { | |
border-radius: 5px !important; | |
background: rgba(80,80,80,.6) !important; | |
} | |
::-webkit-scrollbar-thumb:hover { | |
background: rgba(96,96,96,.6) !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment