diff options
author | hellekin <how@cepheide.org> | 2024-10-23 18:42:11 +0200 |
---|---|---|
committer | hellekin <how@cepheide.org> | 2024-10-23 18:42:11 +0200 |
commit | d10d34f2a9d677c9ea324b9e9c71aa0229d64d5f (patch) | |
tree | df41aabe91e3a6661b11539d31e3ef2291f13ed9 | |
parent | 8d17dc2c458b5b641699de19efa1d392b53fccc2 (diff) | |
download | lesoiseaux.io-d10d34f2a9d677c9ea324b9e9c71aa0229d64d5f.tar.gz |
[CSS] Colorize header bar (1/2)
-rw-r--r-- | assets/scss/_header-nav.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/assets/scss/_header-nav.scss b/assets/scss/_header-nav.scss index 49e9d86..9702f0b 100644 --- a/assets/scss/_header-nav.scss +++ b/assets/scss/_header-nav.scss @@ -7,6 +7,7 @@ article > header > nav { padding: 0; display: flex; width: 100%; + background-color: $bg-header; li { margin: 0 auto; @@ -16,6 +17,10 @@ article > header > nav { border: 1px solid; width: 12rem; + &:hover, &:active { + background-color: $bg-txt-on; + } + a { display: inline-block; position: relative; |