Use Stylus, copy the CSS, tweak colors etc.
Last active
January 25, 2021 23:24
-
-
Save xypnox/2e550b29151090484494815800e9fcc0 to your computer and use it in GitHub Desktop.
HN but it is not an eyesore
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
#hnmain, | |
html, | |
#hnmain td { | |
background-color: #0f111a; | |
} | |
#hnmain { | |
margin: 2rem 0; | |
} | |
body { | |
font-size: 1.5rem !important; | |
max-width: 800px; | |
margin: auto; | |
} | |
a:link { | |
color: #D5D6DD; | |
} | |
.pagetop a:visited { | |
color: #D5D6DD; | |
} | |
.hnname a { | |
color: #ff6600 !important; | |
} | |
.title { | |
font-size: 1.5rem; | |
font-weight: 600; | |
} | |
.hnmore a:link, | |
a:visited, | |
.title, | |
.default, | |
.subtext, | |
.c00, | |
.c00 a:link, | |
.subtext a:link, | |
.subtext a:visited, | |
.comhead, | |
.pagetop, | |
body, | |
.c00 .reply a:link, | |
.reply a:link{ | |
color: #8F93A2 | |
} | |
.comhead { | |
display: block; | |
padding: 0.25rem 0; | |
} | |
.subtext, | |
.c00, | |
.c00 a:link { | |
font-size: 16px; | |
} | |
.default { | |
font-size: 14px; | |
} | |
.itemlist { | |
margin: 2rem 0 0; | |
} | |
#pagespace { | |
height: 3rem !important; | |
} | |
.itemlist tr td { | |
padding: 1rem 0.25rem 0; | |
} | |
.itemlist tr td.subtext { | |
padding: 0 0.25rem 1rem; | |
} | |
.votearrow { | |
margin-top: 0.5rem; | |
opacity: 0.5; | |
} | |
.itemlist tr td.votelinks { | |
padding: 1rem 0 0; | |
} | |
textarea, input { | |
border: 1px solid #8F93A280; | |
border-radius: 0.5rem; | |
padding: 0.5rem; | |
background: rgba(255, 255, 255, 0.05); | |
} | |
input:hover { | |
background: rgba(255, 255, 255, 0.1); | |
} | |
.c00 .reply a:link, .reply a:link { | |
font-size: 0.75rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment