Skip to content

Commit

Permalink
fixed menus in all pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Anandha-Vihari committed Oct 16, 2024
1 parent fa096fd commit 50ff90c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 47 deletions.
13 changes: 3 additions & 10 deletions Feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,24 +91,17 @@
.menu a {
color: black;
/* Light mode link color */
border: 1px solid black;
border: 0px solid black;
/* Black border */
padding: 5px 10px;
text-decoration: none;
transition: all 0.3s;
}

.menu a:hover {
background-color: blue;
/* Blue background on hover */
color: white;
/* White text on hover */
}

.dark-mode .menu a {
color: white;
/* Dark mode link color */
border: 1px solid lightgrey;
border: 0px solid lightgrey;
/* Light grey border in dark mode */
}

Expand All @@ -126,7 +119,7 @@

.light-dark-btn {
background-color: transparent;
border: 1px solid black;
border: 0px solid black;
/* Black border */
cursor: pointer;
color: black;
Expand Down
9 changes: 1 addition & 8 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,20 +89,13 @@
.menu a {
color: black;
/* Light mode link color */
border: 1px solid black;
border: 0px solid black;
/* Black border */
padding: 5px 10px;
text-decoration: none;
transition: all 0.3s;
}

.menu a:hover {
background-color: rgb(10, 61, 212);
/* Blue background on hover */
color: white;
/* White text on hover */
}

.dark-mode .menu a {
color: white;
/* Dark mode link color */
Expand Down
23 changes: 2 additions & 21 deletions features.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,26 +84,18 @@
}

.menu li {
margin-right: 20px;
margin-right: 0px;
}

.menu a {
color: black;
/* Light mode link color */
border: 1px solid black;
border: px solid black;
/* Black border */
padding: 5px 10px;
text-decoration: none;
transition: all 0.3s;
}

.menu a:hover {
background-color: blue;
/* Blue background on hover */
color: white;
/* White text on hover */
}

.dark-mode .menu a {
color: white;
/* Dark mode link color */
Expand Down Expand Up @@ -142,12 +134,6 @@
color: black;
/* Default button color */
}

.light-dark-btn:hover {
color: blue;
/* Change color on hover */
}

.dark-mode .light-dark-btn {
color: white;
/* Button color in dark mode */
Expand Down Expand Up @@ -227,11 +213,6 @@
transition: background-color 0.3s, color 0.3s;
}

.menu ul li a:hover {
background-color: blue;
color: white;
}

.menu ul li a.active {
color: white;
background-color: #000;
Expand Down
9 changes: 1 addition & 8 deletions team.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,20 +90,13 @@
.menu a {
color: black;
/* Light mode link color */
border: 1px solid black;
border: 0px solid black;
/* Black border */
padding: 5px 10px;
text-decoration: none;
transition: all 0.3s;
}

.menu a:hover {
background-color: blue;
/* Blue background on hover */
color: white;
/* White text on hover */
}

.dark-mode .menu a {
color: white;
/* Dark mode link color */
Expand Down

0 comments on commit 50ff90c

Please sign in to comment.