diff options
author | Bradley Taunt <bt@btxx.org> | 2024-12-05 20:30:10 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-12-05 20:31:58 -0500 |
commit | 22745030911846b1aaca5968a85bf65ad7b31882 (patch) | |
tree | 121ce659c3d91097636c09dd14ab681ab7f847af /style.css | |
parent | 1ce599906cd771d2d4231398320d5019fc0a928a (diff) |
Update git repo links, minor 404 page cleanup, testing out inverted colors for dark mode
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -11,6 +11,7 @@ html { body { background: #fff; border: 2px solid #212738; + color: black; font-family: 'Verdana', sans-serif; font-size: 15px; line-height: 1.4; @@ -224,3 +225,15 @@ footer p { white-space: nowrap; } } + +@media (prefers-color-scheme: dark) { + html { + background: black; + } + body { + filter: invert(0.85); + } + img { + filter: invert(1); + } +} |