common.css: add subtle text-shadow to header nav text

0 offset, 8px blur, rgba(0,0,0,0.35) — no directional shadow, just a
soft glow that improves legibility of white text against the lighter
portions of the gradient header.
This commit is contained in:
Pontoporeia
2026-04-02 18:55:22 +02:00
parent d85fb22cfc
commit c68e355de7

View File

@@ -88,6 +88,12 @@ header nav ul a {
transition: opacity 0.15s; transition: opacity 0.15s;
} }
/* Subtle shadow on all header text to improve legibility against the gradient */
header nav > a,
header nav ul a {
text-shadow: 0 0 12px rgba(149, 87, 181, 0.65);
}
header nav ul a:hover { header nav ul a:hover {
opacity: 1; opacity: 1;
} }