aboutsummaryrefslogtreecommitdiffhomepage
path: root/style.css
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-12-05 20:30:10 -0500
committerBradley Taunt <bt@btxx.org>2024-12-05 20:31:58 -0500
commit22745030911846b1aaca5968a85bf65ad7b31882 (patch)
tree121ce659c3d91097636c09dd14ab681ab7f847af /style.css
parent1ce599906cd771d2d4231398320d5019fc0a928a (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.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/style.css b/style.css
index 665a853..6f5e443 100644
--- a/style.css
+++ b/style.css
@@ -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);
+ }
+}