1
0
Fork 0

try some stuff with the style

This commit is contained in:
dtb 2023-11-24 00:51:50 -07:00
parent 2effe93d70
commit b4e70b255f
1 changed files with 11 additions and 8 deletions

View File

@ -540,18 +540,21 @@ How to accomplish this is an exercise left to the reader.
src: url("unscii-16.ttf") format("ttf"),
url("unscii-16.woff") format("woff");
}
@media (prefers-color-scheme: light) {
body { background: #eee; color: #000; }
}
@media (prefers-color-scheme: dark) {
a { color: #fff; }
body { background: #000; color: #ffdbdb; }
}
@media (prefers-color-scheme: light) { body {
background: #eee !important;
color: #000 !important;
} }
a { color: #fff; }
body { /* copied from a textfile site because idk css */
text-align: left;
background: #000;
color: #ffdbdb;
display: grid;
grid-template-rows: auto 1fr auto;
margin: 0 auto 0 auto;
text-align: left;
width: 80ch;
}
pre {