Skip to content

Commit

Permalink
Change button handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Loomeh committed Jan 23, 2024
1 parent a7c5d22 commit dd4905e
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,12 @@ footer {
#nav {
float: left;
font-family: 'Poppins', sans-serif;
border: 1px solid #121314;
border-top: 1px solid #2b2e30;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 0px;
overflow: hidden;
width:100%;
position: fixed;
position: relative;
top: 0;
}

Expand All @@ -56,7 +54,6 @@ ul {
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}

li {
Expand All @@ -67,13 +64,19 @@ li a {
display: block;
color: white;
text-align: center;
text-size-adjust: auto;
padding: 14px 16px;
text-decoration: none;
}

@keyframes tabhover {
to {background-color: #fd0000;}
}

/* Change the link color to #111 (black) on hover */
li a:hover {
background-color: #fd0000;
animation: tabhover 0.3s;
animation-fill-mode: forwards;
}

#titletext {
Expand Down

0 comments on commit dd4905e

Please sign in to comment.