diff options
| author | Bradley Taunt <bt@btxx.org> | 2025-01-21 09:50:04 -0500 |
|---|---|---|
| committer | Bradley Taunt <bt@btxx.org> | 2025-01-21 09:50:04 -0500 |
| commit | df433722c963c5c2ef44c5ada9f7b0912841f6d7 (patch) | |
| tree | 01277d4aa95de7f4d687c5c150d82d29f88a2332 /public/style.css | |
| parent | cd0d6efa2644bf3cd889e99f4841cfe5a21a7bb6 (diff) | |
Include dark mode, alterations to post draft
Diffstat (limited to 'public/style.css')
| -rw-r--r-- | public/style.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/public/style.css b/public/style.css index ccbbeeb..6de85e3 100644 --- a/public/style.css +++ b/public/style.css @@ -62,6 +62,13 @@ table tr:nth-of-type(even) { background: #f1f1f1; } +.footnotes { + border-top: 1px solid; + font-size: 90%; + margin: 20px 0 10px; + padding: 10px 0; +} + footer { margin: 2rem 0 0; } @@ -72,4 +79,16 @@ footer nav ul { footer nav ul li { display: inline-block; margin: 0 10px 10px 0; +} + +@media(prefers-color-scheme: dark) { + body { + background: #2d2d2d; + } + code, pre { + background: #000 !important; + } + blockquote { + color: lightyellow; + } }
\ No newline at end of file |
