diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2024-05-19 16:08:41 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2024-05-19 16:08:41 +0200 |
commit | e89b095d2002498a1791f192c795e8a85dc6ea65 (patch) | |
tree | f461c26de2a15c99e38876c1dd5d819166e11b9b /src/styles | |
parent | 5aff968bf932f201b1103f2f81255ab58f115241 (diff) | |
download | sousleciel.lol-e89b095d2002498a1791f192c795e8a85dc6ea65.tar.gz |
feat: add basic description for all posts
Diffstat (limited to 'src/styles')
-rw-r--r-- | src/styles/main.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/styles/main.css b/src/styles/main.css index 489298e..dd62b28 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -10,13 +10,16 @@ body { h1 { font-size: 2em; - margin-bottom: 30vh; margin-top: 1em; } +header h1 { + margin-bottom: 30vh; +} + h1 > a { text-decoration-style: wavy; - text-decoration-thickness: 15%; + /* text-decoration-thickness: 15%; */ } a, a:hover, a:visited { @@ -32,7 +35,10 @@ ul li { } footer { - color: white; - background-color: black; + background-color: blue; margin-top: 4em; } + +footer a, footer a:hover, footer a:visited { + color: white; +} |