From c68e355de7b0bd90ef10d281028521a70acf5c17 Mon Sep 17 00:00:00 2001 From: Pontoporeia Date: Thu, 2 Apr 2026 18:55:22 +0200 Subject: [PATCH] common.css: add subtle text-shadow to header nav text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- public/assets/css/common.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/assets/css/common.css b/public/assets/css/common.css index 5b10648..2929b26 100644 --- a/public/assets/css/common.css +++ b/public/assets/css/common.css @@ -88,6 +88,12 @@ header nav ul a { 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 { opacity: 1; }