Skip to content

Commit

Permalink
Feature: Add hover effect of navbar. (#37)
Browse files Browse the repository at this point in the history
* Improve hover effect on navigation links
  • Loading branch information
29deepanshutyagi authored Jan 16, 2025
1 parent a66783c commit 71455bb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions static/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,17 @@ body>header nav a svg {
body>header nav nav a:focus,
body>header nav nav a:hover {
text-shadow: var(--extruded-dark);
opacity: .75


}
body>header nav a:hover {
color: white;
opacity: 1;
text-shadow: 0 0 1px white, 0 0 1px white, 0 0 1px white;
}

body>header nav a.active {
display: none
display: none;
}

.scroll-to-top {
Expand Down

0 comments on commit 71455bb

Please sign in to comment.