From 8d5dc8e5ed6bb3225c5c207acaee985c8a909546 Mon Sep 17 00:00:00 2001 From: Rich Kreider Date: Fri, 27 Mar 2026 20:15:21 -0400 Subject: [PATCH] add dark mode css --- local.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 local.css diff --git a/local.css b/local.css new file mode 100644 index 0000000..bb3bec4 --- /dev/null +++ b/local.css @@ -0,0 +1,18 @@ +* { + background-color: #000022; + color: #00d56d; + font-family: monospace; + font-size: unset; +} +tr.alt_color:nth-child(even) {background-color: unset;} +blockquote {background: #000033;} +table, th, td {border: 1px solid #39c5bb;} +@media screen and (max-width: 600px) {table.tidy tr td{border-bottom: 2px dotted #002255;}} + +a:link {color:#00d56d;} +a:visited {color:#00d56d;} +a:hover {color: red!important; background-color:white!important;} +a.nohov:hover{background:none!important;color:white!important;} +hr, hr.dim {border-top: 1px solid #666666;} +.noprebg pre, code{background: none} +*.dimmed {color: #666666 !important;} -- 2.47.3