Created
June 15, 2023 15:51
-
-
Save Zren/d025e06754bb2e0a7de0036fb2eee3fc to your computer and use it in GitHub Desktop.
Stylus theme for news.ycombinator.com and hckrnews.com
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
@-moz-document domain("hckrnews.com") { | |
@media (max-width: 767px) { | |
header > .span5:first-child { | |
width: 60vw; | |
} | |
header h3 { | |
padding-left: 20px; | |
} | |
} | |
html, body { | |
color: #c1c2c3; /* #333333 */ | |
background-color: #111213; /* #ffffff */ | |
} | |
a { | |
color: #aaaaaa; /* #333333 */ | |
} | |
a:hover { | |
color: #eeeeee; /* #0d0d0d */ | |
} | |
p small { | |
color: #999999; | |
} | |
h1 small, | |
h2 small, | |
h3 small, | |
h4 small, | |
h5 small, | |
h6 small { | |
color: #999999; | |
} | |
h6 { | |
color: #999999; | |
} | |
.nav > li > a:hover { | |
background-color: #303133; /* #eeeeee */ | |
} | |
.nav .nav-header { | |
color: #999999; | |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); | |
} | |
.nav-list > li > a, | |
.nav-list .nav-header { | |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); | |
} | |
.nav-list > .active > a, | |
.nav-list > .active > a:hover { | |
color: #ffffff; | |
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); | |
background-color: #333333; | |
} | |
.nav-list .divider { | |
background-color: #e5e5e5; | |
border-bottom-color: #ffffff; | |
} | |
.nav-tabs { | |
border-bottom-color: #ddd; | |
} | |
.nav-tabs > li > a { | |
border-color: transparent; | |
} | |
.nav-tabs > li > a:hover { | |
border-color: #eeeeee #eeeeee #dddddd; | |
} | |
.nav-tabs > .active > a, | |
.nav-tabs > .active > a:hover { | |
color: #555555; | |
background-color: #ffffff; | |
border-color: #ddd; | |
border-bottom-color: transparent; | |
} | |
.nav-pills > .active > a, | |
.nav-pills > .active > a:hover { | |
color: #ffffff; | |
background-color: #333333; | |
} | |
.nav-tabs.nav-stacked > li > a { | |
border-color: #ddd; | |
} | |
.entries .homepage { | |
color: #ff6600; | |
} | |
.entries .dead { | |
font-size: 10px; | |
color: #ccc; | |
} | |
.entries .dead .source { | |
color: #ccc; | |
} | |
.entries a.link.job::before { | |
color: #efc439; | |
} | |
.entries a:hover { | |
background-color: #303133; /* #f6f7ee */ | |
} | |
.entries a.hn:visited, | |
.entries a.link:visited { | |
color: #999; | |
} | |
.entries .source { | |
color: #999; | |
} | |
.entries .lastvisit { | |
border-bottom-color: #333; /* #999 */ | |
} | |
.entries a.lastvisit:hover { | |
background-color: transparent; | |
} | |
.entries .day { | |
border-bottom-color: #ff6600; | |
} | |
.entries .tab { | |
background-color: #ff6600; | |
color: #fff; | |
} | |
.entries .lastvisit .label { | |
background-color: #333; /* #999 */ | |
color: #fff; | |
} | |
} | |
@-moz-document domain("news.ycombinator.com") { | |
body { | |
color: #999999; /* #828282 */ | |
background-color: #08090a; | |
} | |
table#hnmain { | |
background-color: #111213;/* ##f6f6ef */ | |
} | |
a:link { | |
color: #aaaaaa; /* #333333 */ | |
} | |
a:link:hover { | |
color: #eeeeee; /* #0d0d0d */ | |
} | |
td[bgcolor="#ff6600"] { | |
background-color: #aa3300; | |
} | |
.pagetop a:link { | |
color: #000000; | |
} | |
textarea { | |
border-color: #08090a; | |
background-color: #161718; | |
color: #aaaaaa; | |
} | |
.c00, .c00 a:link { color: #999999; } | |
.c5a, .c5a a:link, .c5a a:visited { color:#5a5a5a; } | |
.c73, .c73 a:link, .c73 a:visited { color:#737373; } | |
.c82, .c82 a:link, .c82 a:visited { color:#828282; } | |
.c88, .c88 a:link, .c88 a:visited { color:#888888; } | |
.c9c, .c9c a:link, .c9c a:visited { color:#9c9c9c; } | |
.cae, .cae a:link, .cae a:visited { color:#aeaeae; } | |
.cbe, .cbe a:link, .cbe a:visited { color:#bebebe; } | |
.cce, .cce a:link, .cce a:visited { color:#cecece; } | |
.cdd, .cdd a:link, .cdd a:visited { color:#333333; } /* #dddddd flagged comments */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment