34 lines
462 B
CSS
34 lines
462 B
CSS
#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;
|
|
}
|
|
} |