edited link styling in header and footer

This commit is contained in:
2026-02-15 13:07:13 +01:00
parent 14664054bd
commit 151e1206ab
2 changed files with 5 additions and 3 deletions

View File

@@ -67,6 +67,7 @@
footer a:hover { footer a:hover {
font-weight: 700; font-weight: 700;
text-decoration: wavy var(--underline-dash-size) var(--color-highlight) underline;
} }
.bottom-rat { .bottom-rat {

View File

@@ -29,10 +29,10 @@
} }
a { a {
font-family: var(--font-);
font-size: 1rem; font-size: 1rem;
font-weight: bold;
text-decoration: none; text-decoration: none;
font-family: var(--font-mono);
font-weight: 500;
} }
a:link { a:link {
@@ -44,7 +44,8 @@
} }
/* mouse over link */ /* mouse over link */
a:hover { a:hover {
color: var(--color-highlight); font-weight: 700;
/* color: var(--color-highlight); */
text-decoration: wavy var(--underline-dash-size) var(--color-highlight) underline; text-decoration: wavy var(--underline-dash-size) var(--color-highlight) underline;
} }