1
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

View File

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