1
0
Fork 0

try to fix light theme stylesheet

This commit is contained in:
dtb 2023-11-28 07:41:42 -07:00
parent 7fa2c337d0
commit b72e3400ed
1 changed files with 7 additions and 6 deletions

View File

@ -541,12 +541,6 @@ How to accomplish this is an exercise left to the reader.
url("unscii-16.woff") format("woff");
}
@media (prefers-color-scheme: light) { body {
a: #000 !important;
background: #eee !important;
color: #000 !important;
} }
a { color: #fff; }
body { /* copied from a textfile site because idk css */
@ -558,6 +552,7 @@ body { /* copied from a textfile site because idk css */
text-align: left;
width: 80ch;
}
pre {
font-family: "unscii16", monospace;
font-smooth: never;
@ -565,6 +560,12 @@ pre {
-moz-osx-font-smoothing: grayscale;
}
@media (prefers-color-scheme: light) { body {
a: #000 !important;
background: #eee !important;
color: #000 !important;
} }
/blah/2023-11-27.html