Skip to content

Commit

Permalink
Merge pull request #188 from AmitBiswas1402/fix/hover
Browse files Browse the repository at this point in the history
[FIX] Fixed hover of Home Button background color
  • Loading branch information
JAYESHBATRA authored Feb 16, 2024
2 parents 103dddb + e3e1a9f commit b00f981
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .hintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"extends": [
"development"
],
"hints": {
"no-inline-styles": "off",
"disown-opener": "off",
"axe/text-alternatives": [
"default",
{
"image-alt": "off"
}
],
"button-type": "off"
}
}
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
</a>
<div class="nav-links" id="nav-links">
<ul class="nav-menu">
<li><a href="index.html" class="hover-link current-page ">Home</a></li>
<li><a href="index.html" class="hover-link current-page" id="home-hover">Home</a></li>
<li>
<a href="./Pages/About-Us/index.html" class="hover-link"
>About Us</a
Expand Down
3 changes: 3 additions & 0 deletions media-queries.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
.hover-link{
margin: 16px 0;
}
#home-hover:hover{
color: #61b3f2;
}
.nav-menu.active{
top: 13%;
}
Expand Down

0 comments on commit b00f981

Please sign in to comment.