1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-20 04:12:09 +00:00
seirdy.one/assets/css/dark.css

34 lines
506 B
CSS
Raw Normal View History

@media (prefers-color-scheme: dark) {
html {
background: #000;
color: #eee;
}
/* IndieWeb u-photo shouldn't look like floating punctuation marks */
.u-photo {
/* Versions of Samsung Internet released recently as 2017 need this
* prefix, along with Qt4-based QtWebkit used in e.g. rekonq */
-webkit-filter: invert(1);
filter: invert(1);
}
a {
color: #8cf;
}
a:visited {
color: #d9f;
}
a:active {
color: #e3e;
}
blockquote,
p code,
hr,
pre {
border-color: #333;
}
}