umami/components/layout/Header.module.css
2021-01-03 13:32:25 +02:00

48 lines
680 B
CSS

.header {
display: flex;
min-height: 100px;
}
.title {
font-size: var(--font-size-large);
display: flex;
align-items: center;
line-height: 1.4;
}
.logo {
margin-right: 12px;
}
.nav {
display: flex;
justify-content: center;
align-items: center;
font-size: var(--font-size-normal);
font-weight: 600;
}
.nav a + a {
margin-left: 40px;
}
.buttons {
display: flex;
justify-content: flex-end;
align-items: center;
}
@media only screen and (max-width: 992px) {
.nav {
font-size: var(--font-size-large);
justify-content: center;
padding: 20px 0;
}
}
@media only screen and (max-width: 576px) {
.header {
padding: 0 15px;
}
}