diff options
author | Vincent Douillet <vincent@vdouillet.fr> | 2021-09-11 15:04:27 +0200 |
---|---|---|
committer | Vincent Douillet <vincent@vdouillet.fr> | 2021-09-11 15:04:27 +0200 |
commit | 3e5e835a448cd4a3d7e0bcbaefc86401dc00b799 (patch) | |
tree | d445358b2556de3636468769e61873cc0e196dd8 | |
parent | 2a63ed23de5bc82003c52fa6f594f03528190252 (diff) |
Improve css
-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; |