Initial commit.

This commit is contained in:
Nolan Darilek 2025-04-07 12:17:09 -05:00
commit 1bc79510f2
37 changed files with 6757 additions and 0 deletions

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;
}