From 57d6d8081428da1979dc79b3f68b965fee01006c Mon Sep 17 00:00:00 2001 From: Veer Shah <185037322+VeerShah41@users.noreply.github.com> Date: Fri, 20 Mar 2026 16:29:33 +0530 Subject: [PATCH] fix(docs): add hover effect to footer links Add smooth hover transition to footer links for improved UX. - Remove default underline from footer links for cleaner look - Add opacity fade on hover (0.85) - Add subtle white glow (text-shadow) on hover - Add underline on hover for clear interactive feedback - Transition duration: 0.2s ease for smooth feel Closes #1861 --- docs/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/style.css b/docs/style.css index 94123ceb9..a567ea9df 100644 --- a/docs/style.css +++ b/docs/style.css @@ -582,6 +582,14 @@ blockquote { .main-footer a { color: #fff; + text-decoration: none; + transition: opacity 0.2s ease, text-shadow 0.2s ease; +} + +.main-footer a:hover { + opacity: 0.85; + text-shadow: 0 0 8px rgba(255, 255, 255, 0.6); + text-decoration: underline; } /*-----------------------------------*\