Simple navbar finished

This commit is contained in:
mipel
2021-07-02 13:12:38 +02:00
parent 629bf4230e
commit b63cb3c493
5 changed files with 200 additions and 205 deletions

View File

@@ -7,15 +7,30 @@ Declare some basic colours
--rlp-grey-light: #c6c6c6;
}
body{
font-family: Arial;
letter-spacing: 0.2px;
}
.nav{
background-color: var(--rlp-red);
height: 50px;
}
.nav-icon{
color: white;
font-weight: bold;
font-size: 1.5rem;
letter-spacing: -3px;
}
.menu-elem{
border-left: 1px solid white;
border-right: 1px solid white;
display: inline-block;
}
.menu-elem:hover{
background-color: var(--rlp-grey-light);
}
.nav-btn{