diff options
-rw-r--r-- | static/css/style.css | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/static/css/style.css b/static/css/style.css index 7404523..4015589 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -22,7 +22,7 @@ a:visited { header a, header a:visited, header a:hover { - color: black; + color: inherit; text-decoration: none; } @@ -34,6 +34,7 @@ footer.copyright { footer.copyright { text-align: center; + margin-bottom: 1em; } #menu ul { @@ -57,32 +58,24 @@ pre { @media(prefers-color-scheme: light) { html { - background: #efeee3; + background-color: aliceblue; } } @media(prefers-color-scheme: dark) { html { - background: #232323; + background-color: #232323; color: lightgrey; } + a { color: #7d74ff; } + a:visited { color: #b369b5; } - #banner a:link, - #banner a:visited, - #banner a:hover, - #menu a:link, - #menu a:visited, - #menu a:hover, - header a, - header a:visited, - header a:hover { - color: lightgrey; - } + footer.post-info, footer.copyright { color: #b0b0b0; |