Style pages

This commit is contained in:
2021-09-01 17:30:30 +01:00
parent b7865cf821
commit 8e2a5a13a5
15 changed files with 1030 additions and 0 deletions

34
src/css/NavBar.css Normal file
View File

@@ -0,0 +1,34 @@
#banner-logo {
width: 200px;
display: initial;
}
#small-logo {
width: 55px;
display: none;
}
nav {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
margin: 24px;
}
.navbar-items, nav > a {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-end;
}
@media screen and (max-width: 660px) {
#banner-logo {
display: none;
}
#small-logo {
display: initial;
}
}