Create a seperate stylesheet for navabar

This commit is contained in:
2026-05-02 19:45:31 +02:00
parent 23b2f78093
commit b564a5146e
+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;
}