Skip to content

Commit

Permalink
add custom link hover
Browse files Browse the repository at this point in the history
  • Loading branch information
mrittika-dey authored Sep 6, 2024
1 parent 20dc5b3 commit 7f26bd0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions css/styles_website.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,15 @@ button:hover .hover-effect {
button {
transition: background-color 0.3s, color 0.3s, text-decoration 0.3s;
}

/* Remove default link styles */
.custom-link {
color: inherit; /* Inherit the color from the parent */
text-decoration: none; /* Remove the underline */
}

/* Apply custom hover styles */
.custom-link:hover {
color: #5985b5; /* Custom hover color */
text-decoration: underline; /* Add underline on hover */
}

0 comments on commit 7f26bd0

Please sign in to comment.