Skip to content

Instantly share code, notes, and snippets.

@kirkegaard
Last active May 31, 2020 21:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kirkegaard/0d7e96bf0ebbce5ddad98e59f38ced6d to your computer and use it in GitHub Desktop.
Save kirkegaard/0d7e96bf0ebbce5ddad98e59f38ced6d to your computer and use it in GitHub Desktop.
hackernews dark mode
::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;
}
@Humberd
Copy link

Humberd commented May 31, 2020

Nice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment