From 6429c6a5759583035628ffe3732b66be16a75d80 Mon Sep 17 00:00:00 2001 From: vincent-peugnet Date: Tue, 11 Nov 2025 15:17:46 +0100 Subject: [PATCH] change nav and footer links hover behavior --- base.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/base.css b/base.css index ccae301..5eb68f9 100644 --- a/base.css +++ b/base.css @@ -50,13 +50,14 @@ nav, footer, aside { nav a, footer a, aside a { font-family: Dymo; font-size: 3em; + display: inline-block; } nav a.current { - text-decoration: underline #00000042; + text-decoration: underline 3px; } -nav a:hover { - text-decoration: underline #000000; +footer a:hover, nav a:hover { + transform: rotate(-2deg); }