Skip to content

Commit

Permalink
Added hover effects to the links iiitl#4
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchitapatel29 committed Mar 17, 2024
1 parent fae1311 commit 1abc4a7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,18 @@ nav a {
}

nav a:hover {
color: red;
color: rgb(255, 255, 255);
text-decoration: underline;
translate: 0px -8px;
font-size: 30px;
transition: font-size 0.3s ease, color 0.3s ease;
border-radius: 5px;
box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
background-color: rgb(192, 115, 20);
transition: box-shadow 0.3s ease;



}

.content {
Expand Down

0 comments on commit 1abc4a7

Please sign in to comment.