Initial commit

This commit is contained in:
2023-11-01 15:35:43 +01:00
commit e01440fbdb
1489 changed files with 285805 additions and 0 deletions

29
public/styles.css Normal file
View File

@@ -0,0 +1,29 @@
nav {
background-color: black;
color: white;
display: flex;
justify-content: space-between;
padding: 30px 60px;
}
nav ul {
display: flex;
justify-content: space-around;
align-items: center;
}
nav li {
list-style: none;
}
nav li a {
color: white;
text-decoration: none;
font-weight: bold;
padding: 5px 8px;
}
nav li a:hover {
color: yellow;
text-decoration: none;
}