Attempt to fix colors on navbar

This commit is contained in:
Lucas Kent 2022-11-23 17:59:30 -05:00
parent d6a877485b
commit c80ce35185

View File

@ -3,7 +3,7 @@ ul {
margin: 0; margin: 0;
padding: 0; padding: 0;
overflow: hidden; overflow: hidden;
background-color: rgb(0, 0, 0); background-color: hsl(0, 0%, 0%);
position: fixed; position: fixed;
top: 0; top: 0;
width: 100%; width: 100%;
@ -22,11 +22,11 @@ ul {
} }
li a:hover:not(.active) { li a:hover:not(.active) {
background-color: #080754; background-color: hsl(241, 85%, 18%);
} }
.active { .active {
background-color: #1b0aff; background-color: hsl(244, 100%, 52%);
} }
body{ body{
margin: 0px; margin: 0px;