umami/components/layout/Header.module.css

37 lines
478 B
CSS
Raw Normal View History

2020-08-05 07:45:05 +02:00
.header {
display: flex;
2020-08-18 01:46:13 +02:00
min-height: 100px;
2020-08-05 07:45:05 +02:00
}
.title {
2020-08-06 04:04:02 +02:00
font-size: var(--font-size-large);
2020-08-05 07:45:05 +02:00
}
2020-08-18 01:46:13 +02:00
.logo {
margin-right: 12px;
}
2020-08-05 07:45:05 +02:00
.nav {
list-style: none;
display: flex;
justify-content: flex-end;
align-items: center;
}
.nav > * {
2020-08-06 04:04:02 +02:00
font-size: var(--font-size-normal);
2020-08-05 07:45:05 +02:00
font-weight: 600;
margin-left: 40px;
}
2020-08-07 07:03:02 +02:00
2020-08-18 01:46:13 +02:00
@media only screen and (max-width: 768px) {
.title {
text-align: center;
}
.nav {
display: flex;
justify-content: space-evenly;
}
2020-08-07 07:03:02 +02:00
}