diff options
| author | Matt Kosarek <matt.kosarek@canonical.com> | 2026-02-18 17:15:51 -0500 |
|---|---|---|
| committer | Matt Kosarek <matt.kosarek@canonical.com> | 2026-02-18 17:15:51 -0500 |
| commit | 5429f265a5e47ff63363cb7c145de9198ca73c86 (patch) | |
| tree | 1e601c2171897367f44bc7d39c39aa8981410e05 /public/index.css | |
| parent | 59260c4f7a265f1ad4db9e0ee5e469132cdef094 (diff) | |
bugfix: fixing themeing
Diffstat (limited to 'public/index.css')
| -rw-r--r-- | public/index.css | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/public/index.css b/public/index.css index 4800826..63098f9 100644 --- a/public/index.css +++ b/public/index.css @@ -21,7 +21,7 @@ header > h1 { } header > nav { - margin-top: 2rem; + margin-top: 1rem; margin-bottom: 1rem; padding-left: 0.25rem; } @@ -32,21 +32,23 @@ header > nav > ul { list-style-type: none; margin: 0; padding: 0; + gap: 1rem; } header > nav > ul > li { - padding-right: 1rem; + display: flex; + align-items: center; } header > nav > ul a { text-decoration: none; - color: blue; + color: darkviolet; font-size: 1rem; border-bottom: 1px solid transparent; } header > nav > ul a:hover { - opacity: 0.7; + opacity: 0.8; text-decoration: underline; } |
