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;