From 695eab4b2a566f24e467d000ecc482c2c86b3542 Mon Sep 17 00:00:00 2001 From: Starfall Date: Tue, 2 Jul 2024 16:02:13 -0500 Subject: add basic.css this may or may not become relevant in the near future, not even i can predict where the whims of fancy may take me --- basic.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 basic.css diff --git a/basic.css b/basic.css new file mode 100644 index 0000000..087cea4 --- /dev/null +++ b/basic.css @@ -0,0 +1,23 @@ +body { + background-color: #fff8e7; /* cosmic latte */ + color: black; + max-width: 75ch; + padding: 2ch; + margin: auto; + line-height: 1.5; +} + +@media(prefers-color-scheme: dark) { + body { + background-color: #1d2021; + color: #fff8e7; + line-height: 1.6; + word-spacing: 0.2em; + } + a { + color: #cedeff; + } + a:visited { + color: #d4bff8; + } +} -- cgit