summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBela Gyenes <contact@gyenes.xyz>2024-12-21 11:02:08 +0100
committerBela Gyenes <contact@gyenes.xyz>2024-12-21 11:02:08 +0100
commite726a536d42664e23673611c8d136edc6735474b (patch)
tree7ef6ab16c439b3fbcc1d69d61da7fc1846ab9408
parentc4391e0f2290a6edc25e7ce5ec8ad143ed5f1015 (diff)
Inverted header and footer svg images on dark mode.
-rw-r--r--style.css6
1 files changed, 4 insertions, 2 deletions
diff --git a/style.css b/style.css
index 7c950e2..71d8654 100644
--- a/style.css
+++ b/style.css
@@ -151,6 +151,7 @@ border-radius: 5px;
font-weight: bold;
font-size: 1.1em;
margin-top: 0.5em;
+cursor: pointer;
}
summary::marker {
@@ -173,7 +174,8 @@ blockquote, pre, code {
background-color: #111;
border-color: #222
}
-#main img[src$=svg] {
-filter: invert(1);
+header img[src$=svg], footer img[src$=svg] {
+ filter: invert(100%);
+ -webkit-filter: invert(100%);
}
}