1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-20 12:12:09 +00:00
seirdy.one/assets/css/dark.css
Rohan Kumar fb797184b6
CSS: blockquotes, re-use unstyled-list class
- Make blockquotes look like blockquotes
- Make the nav links use the unstyled-list class to avoid re-writing
2021-01-29 12:01:58 -08:00

31 lines
366 B
CSS

@media (prefers-color-scheme: dark) {
html {
background: #000;
color: #fff;
}
/* IndieWeb u-photo should be distinct from the background */
.u-photo {
-webkit-filter: invert(100%);
filter: invert(100%);
}
a {
color: #4af;
}
a:visited {
color: #d7f;
}
a:active {
color: #f33;
}
blockquote,
code,
hr,
pre {
border-color: #333;
}
}