From 8e861eb15a6d7068e60d3aa6f565d62d2396ccdb Mon Sep 17 00:00:00 2001 From: charrviwadhwa Date: Sun, 27 Oct 2024 11:43:31 +0530 Subject: [PATCH] updated contributor.html --- contributor/contributor.html | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/contributor/contributor.html b/contributor/contributor.html index 7fcefd5..f0bde87 100644 --- a/contributor/contributor.html +++ b/contributor/contributor.html @@ -104,14 +104,29 @@ nav ul li a:hover { color: #e00999; transform: scale(1.08); - text-decoration: underline; } +nav ul li a::after { + content: ""; + display: block; + height: 0.5px; + width: 0; + background: #ff3527; + transition: width 0.3s ease; + position: absolute; + left: 0; + bottom: -1px; +} +nav ul li a:hover::after { + width: 100%; +} + nav ul { list-style-type: none; padding: 0; margin: 0; } + nav ul li { display: inline-block; position: relative;