initial commit

This commit is contained in:
Reed Krantz
2026-01-12 16:21:15 -06:00
commit 5ec6c54f22
25 changed files with 7388 additions and 0 deletions

16
assets/styling/navbar.css Normal file
View File

@@ -0,0 +1,16 @@
#navbar {
display: flex;
flex-direction: row;
}
#navbar a {
color: #ffffff;
margin-right: 20px;
text-decoration: none;
transition: color 0.2s ease;
}
#navbar a:hover {
cursor: pointer;
color: #91a4d2;
}