Add Navbar #11

Closed
johannes.vos wants to merge 4 commits from feature/navbar-old into main
Showing only changes of commit 8a025a7b8c - Show all commits
+20
View File
@@ -0,0 +1,20 @@
nav{
display: flex;
justify-content: center;
padding: 10px 0;
border-bottom: 1px solid #000000;
}
nav ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 30px;
}
nav a{
text-decoration: none;
color: black;
}
nav a:hover{
text-decoration: underline;
}