diff options
author | Mark Powers <mark@marks.kitchen> | 2025-08-21 18:28:33 -0500 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2025-08-21 18:28:33 -0500 |
commit | 3c8f8e165aa5cec7b3f88f0a788a1b4b64892689 (patch) | |
tree | bfba8376c7a03fca2ebd17d4df3a8a34c1fb82f1 /static | |
parent | d99ff3c4026322b2456f6dc45f8184ce18c94a48 (diff) |
Improve CSS
Diffstat (limited to 'static')
-rw-r--r-- | static/css/common.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/static/css/common.css b/static/css/common.css index daba43b..55a71c2 100644 --- a/static/css/common.css +++ b/static/css/common.css @@ -1,14 +1,12 @@ :root { --green: #00916E; --pearl: #DED4B9; - --brown: #554F41; + --brown: #423D33; } html { - max-width: 80ch; padding-left: 1em; padding-right: 1em; - margin: auto; line-height: 1.75; font-size: 1.25em; background-color: var(--green); @@ -61,8 +59,10 @@ ul { } body { + max-width: 80ch; + margin: auto; background-color: var(--pearl); - color: #3C3525; + color: var(--brown); display: flex; flex-direction: column; /* font-family: 'Latin Modern Roman', 'Times New Roman', serif; */ @@ -175,7 +175,7 @@ footer .links a { .content ol, .content table, .content ul { - margin-bottom: 1rem; + margin-bottom: 0.4rem; } .content blockquote { |