first commit
This commit is contained in:
commit
3d8c60ee00
41 changed files with 2836 additions and 0 deletions
35
src/styles/Header.css
Normal file
35
src/styles/Header.css
Normal 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;
|
||||
}
|
Reference in a new issue