diff options
author | gennyble <gen@nyble.dev> | 2024-12-20 14:50:43 -0600 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2024-12-20 14:50:43 -0600 |
commit | 8244b3d64ec6888dc65bfa599e9a878c97cb3440 (patch) | |
tree | 5868ee7249c4a8ff2fe2714fb9a0cffc6cc66ea2 /served/styles/common.css | |
parent | 5a28637429dfcb3062b479e596e7376dbebb3bbf (diff) | |
download | ∞-8244b3d64ec6888dc65bfa599e9a878c97cb3440.tar.gz ∞-8244b3d64ec6888dc65bfa599e9a878c97cb3440.zip |
done? for now, anyway
Diffstat (limited to 'served/styles/common.css')
-rwxr-xr-x | served/styles/common.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/served/styles/common.css b/served/styles/common.css index 91750cf..81e5b43 100755 --- a/served/styles/common.css +++ b/served/styles/common.css @@ -31,6 +31,18 @@ /* ^ lmao */ } +@media (prefers-color-scheme: dark) { + :root { + --text: #eee; + --text-dim: #aaa; + --background: #001; + --background-dim: #223; + + --link: salmon; + --visited: mediumslateblue; + } +} + html, body { margin: 0; @@ -96,6 +108,17 @@ a.dead { text-decoration: line-through; } +code { + font-size: 1.1rem; + font-family: Recursive, sans-serif; + font-variation-settings: + "MONO" 1, + "CASL" 0, + "wght" 400, + "slnt" 0, + "CRSV" 0; +} + #nav-access { /* shove it above the page and make sure it's always on top*/ position: absolute; |