Simple navbar implemented

This commit is contained in:
mipel
2021-07-02 11:38:44 +02:00
parent ed35aea034
commit 76786312e9
6 changed files with 87 additions and 228 deletions

View File

@@ -0,0 +1,23 @@
/*
Declare some basic colours
*/
:root{
--rlp-red: #871d33;
--rlp-grey-dark: #8e8e8e;
--rlp-grey-light: #c6c6c6;
}
.nav{
background-color: var(--rlp-red);
height: 50px;
}
.menu-elem{
border-left: 1px solid white;
border-right: 1px solid white;
}
.nav-btn{
color: white;
}