Skip to content

Commit

Permalink
Merge pull request #2 from mdazfar2/main
Browse files Browse the repository at this point in the history
updates
  • Loading branch information
Ayushmaanagarwal1211 authored Jun 6, 2024
2 parents d4e988e + 8984dae commit e60ada9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Official_Website/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,31 @@ p {
flex-direction: row;
position: relative;
}
/* Add CSS for hover and transitions */
.nav__list {
display: flex;
list-style: none;
padding: 0;
margin: 0;
}
.nav__item {
margin-right: 15px;
}
.nav__item a {
color: #333;
font-size: 24px;
transition: color 0.3s, transform 0.3s;
}
.nav__item a:hover {
color: #007BFF;
transform: scale(1.2);
}
body.dark-mode .nav__item a {
color: #fff;
}
body.dark-mode .nav__item a:hover {
color: #FFD700;
}
/* style search container */
.search-container {
display: flex;
Expand Down

0 comments on commit e60ada9

Please sign in to comment.