aboutsummaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorhellekin <how@cepheide.org>2024-10-23 18:49:07 +0200
committerhellekin <how@cepheide.org>2024-10-23 18:49:07 +0200
commite0946dee019e40cffed7f052226bbd8adcdb1976 (patch)
tree7c46d1abeca3be01cc60dced68ee6194408ffd26 /assets
parentae3060fe1d31d6e4d86acac6bf1f353c54af73ab (diff)
downloadlesoiseaux.io-e0946dee019e40cffed7f052226bbd8adcdb1976.tar.gz
[CSS] Colorize header bar (5/2)
Diffstat (limited to 'assets')
-rw-r--r--assets/css/screen.css4
-rw-r--r--assets/scss/_header-nav.scss2
2 files changed, 3 insertions, 3 deletions
diff --git a/assets/css/screen.css b/assets/css/screen.css
index 540e3d9..4df72e7 100644
--- a/assets/css/screen.css
+++ b/assets/css/screen.css
@@ -1579,11 +1579,11 @@ body.txt article > header > nav ul li a {
width: 100%;
height: 100%;
}
-body.txt body.txt article > header > nav ul li a {
+body.txt body.txt article > header > nav ul li a:link {
background-color: rgba(166, 191, 112, 0.7);
color: rgb(240, 240, 242);
}
-body.txt body.txt article > header > nav ul li a:hover, body.txt body.txt article > header > nav ul li a:active {
+body.txt body.txt article > header > nav ul li a:link:hover, body.txt body.txt article > header > nav ul li a:link:active {
background-color: rgb(187, 205, 150);
}
body.txt > aside:hover, body.txt > aside:focus {
diff --git a/assets/scss/_header-nav.scss b/assets/scss/_header-nav.scss
index 28323a9..eaa1f32 100644
--- a/assets/scss/_header-nav.scss
+++ b/assets/scss/_header-nav.scss
@@ -28,7 +28,7 @@ article > header > nav {
}
}
-body.txt article > header > nav ul li a {
+body.txt article > header > nav ul li a:link {
background-color: $bg-txt-off;
color: $fg-header;