aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-12-06 10:05:44 -0500
committerBradley Taunt <bt@btxx.org>2024-12-06 10:05:44 -0500
commit4ff3372220ca286971e5cceb42ef26ee06880091 (patch)
tree107dc4eb6553db9a13abf506afaca5256b1371d6
parent491dea39f9a0da7feca840b7652a486982739240 (diff)
Update dark mode styling with proper design and support
-rw-r--r--style.css33
1 files changed, 30 insertions, 3 deletions
diff --git a/style.css b/style.css
index cf9f363..9157d57 100644
--- a/style.css
+++ b/style.css
@@ -231,9 +231,36 @@ footer p {
background: black;
}
body {
- filter: invert(0.85);
+ background: #2d2d2d;
+ color: white;
}
- img {
- filter: invert(1);
+ h2.post {
+ color: white;
+ }
+ .post-time {
+ color: #ccc;
+ }
+ p code, li code {
+ color: black;
+ }
+ pre {
+ background: black;
+ border-color: white;
+ }
+ blockquote {
+ background: #1d1d1d;
+ }
+ table tr:nth-of-type(odd) td {
+ background: black;
+ }
+ table.members tbody tr td:first-child::before {
+ border-bottom: 1px solid #ccc;
+ color: #ccc;
+ }
+ .fame {
+ color: black;
+ }
+ .thanks {
+ background: black;
}
}