diff options
author | Starfall <us@starfall.systems> | 2024-07-02 16:02:13 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2024-07-02 16:02:13 -0500 |
commit | 695eab4b2a566f24e467d000ecc482c2c86b3542 (patch) | |
tree | 2bee72a5c611661fb38424296a8f19dd93540436 /basic.css | |
parent | 482794473972a1265308fcb89069066483bbdda0 (diff) |
this may or may not become relevant in the near future, not even i can predict where the whims of fancy may take me
Diffstat (limited to 'basic.css')
-rw-r--r-- | basic.css | 23 |
1 files changed, 23 insertions, 0 deletions
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; + } +} |