Last active
May 31, 2020 21:51
-
-
Save kirkegaard/0d7e96bf0ebbce5ddad98e59f38ced6d to your computer and use it in GitHub Desktop.
hackernews dark mode
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
::selection { | |
background-color: #111; | |
color: #eee; | |
} | |
body { | |
background-color: #222; | |
} | |
#hnmain { | |
background: #282828; | |
} | |
#hnmain > tbody > tr:nth-child(1) > td { | |
background-color: #333; | |
} | |
.athing td:first-child.title { | |
visibility:hidden; | |
font-size: 0px; | |
} | |
.athing td.votelinks a { | |
display:inline-block; | |
transform: translate(0px, 6px); | |
} | |
.athing td.votelinks .votearrow { | |
background:none; | |
border: solid #FE6417; | |
border-width: 0px 3px 3px 0px; | |
display:inline-block; | |
vertical-align: middle; | |
transform: rotate(-135deg); | |
} | |
.pagetop { | |
color: #888 | |
} | |
.votelinks { | |
padding: 0px 10px; | |
} | |
.pagetop a:visited, | |
a:link { | |
color: #fff; | |
} | |
.itemlist .spacer { | |
height: 10px !important; | |
} | |
.subtext a:visited { | |
color: #999; | |
} | |
.comhead a:link { | |
color: #fff; | |
} | |
.commtext a:link { | |
color: #FE6417; | |
} | |
.reply a:link { | |
color: #888; | |
} | |
.commtext { | |
color: #ccc; | |
} | |
.ind { | |
background-color: #2e2e2e; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice