Skip to content

Commit

Permalink
updated contributor.html
Browse files Browse the repository at this point in the history
  • Loading branch information
charrviwadhwa committed Oct 27, 2024
1 parent a66e643 commit 8e861eb
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion contributor/contributor.html
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8e861eb

Please sign in to comment.