first commit

This commit is contained in:
Henry Hiles 2023-07-29 15:59:10 -04:00
commit 3d8c60ee00
41 changed files with 2836 additions and 0 deletions

35
src/styles/Header.css Normal file
View file

@ -0,0 +1,35 @@
nav {
display: flex;
height: 100%;
align-items: center;
justify-content: center;
gap: 3rem;
}
header img {
height: 3.5rem;
max-width: 20rem;
}
nav ul {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem 2rem;
border-radius: 2rem;
list-style: none;
margin: 0;
}
nav a {
color: rgb(128, 128, 128);
text-decoration: none;
}
nav a.selected {
color: rgb(0, 0, 0);
}
nav a:hover {
text-decoration: underline;
}