Style pages
This commit is contained in:
34
src/css/NavBar.css
Normal file
34
src/css/NavBar.css
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user