diff options
author | adam <56338480+adastx@users.noreply.github.com> | 2022-09-27 22:54:23 +0200 |
---|---|---|
committer | adam <56338480+adastx@users.noreply.github.com> | 2022-09-27 23:55:44 +0200 |
commit | 7c12fac3bc658cf37ac34d829d683cab70f7738b (patch) | |
tree | 6b1ff3e599e19882a4143d5d1641874e0bd94c11 /src/styles/style.css | |
parent | dc2ad30a02f68b25b536ebbec80c35397ba4ac68 (diff) |
Nicer article list, better dark-mode fg, css spacing
Diffstat (limited to 'src/styles/style.css')
-rw-r--r-- | src/styles/style.css | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/styles/style.css b/src/styles/style.css index f932d79..57ce6a4 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -10,7 +10,7 @@ .dark-mode { --bg: #282c34; - --fg: #c8ceda; + --fg: #eceff4; --link: #64d9a8; --code: #363a45; --footer: #828997; @@ -42,7 +42,7 @@ footer { margin-top: 3em; margin-bottom: 2em; text-align: center; - font-size: 0.95em; + font-size: 0.9em; color: var(--footer); } @@ -110,3 +110,16 @@ blockquote { #date { margin-bottom: 0; } + +#article-list { + margin-top: 1.25em; + margin-bottom: 0.25em; +} +.article-title { + margin-bottom: 0; + margin-top: 12px; +} +.article-date { + margin-top: 0; + font-size: .9em; +} |