mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
37 lines
478 B
CSS
37 lines
478 B
CSS
.header {
|
|
display: flex;
|
|
min-height: 100px;
|
|
}
|
|
|
|
.title {
|
|
font-size: var(--font-size-large);
|
|
}
|
|
|
|
.logo {
|
|
margin-right: 12px;
|
|
}
|
|
|
|
.nav {
|
|
list-style: none;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav > * {
|
|
font-size: var(--font-size-normal);
|
|
font-weight: 600;
|
|
margin-left: 40px;
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
.title {
|
|
text-align: center;
|
|
}
|
|
|
|
.nav {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
}
|
|
}
|