umami/components/layout/Header.module.css

106 lines
1.5 KiB
CSS
Raw Normal View History

.navbar {
align-items: stretch;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 100%;
}
.burger {
display: none;
}
2020-08-05 07:45:05 +02:00
.header {
display: flex;
2020-08-18 01:46:13 +02:00
min-height: 100px;
width: 100%;
2020-08-05 07:45:05 +02:00
}
.title {
2020-08-06 04:04:02 +02:00
font-size: var(--font-size-large);
2020-09-27 07:02:10 +02:00
display: flex;
align-items: center;
line-height: 1.4;
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 {
display: flex;
justify-content: space-between;
align-items: center;
font-size: var(--font-size-normal);
font-weight: 600;
width: 100%;
}
.items {
2020-08-05 07:45:05 +02:00
display: flex;
justify-content: center;
2020-08-05 07:45:05 +02:00
align-items: center;
font-size: var(--font-size-normal);
font-weight: 600;
2020-08-05 07:45:05 +02:00
}
.nav a + a {
margin-left: 40px;
2020-08-05 07:45:05 +02:00
}
2020-08-07 07:03:02 +02:00
.buttons {
display: flex;
justify-content: flex-end;
2020-09-27 07:02:10 +02:00
align-items: center;
}
@media only screen and (max-width: 992px) {
.nav {
font-size: var(--font-size-large);
justify-content: center;
padding: 20px 0;
}
2021-01-03 12:32:25 +01:00
}
2021-01-03 12:32:25 +01:00
@media only screen and (max-width: 576px) {
.header {
padding: 0 15px;
}
.nav {
font-size: var(--font-size-normal);
flex-wrap: wrap;
}
.items {
display: flex;
justify-content: unset;
align-items: left;
font-size: var(--font-size-normal);
font-weight: 600;
}
.items > div {
display: none;
}
.header .active {
display: inherit;
width: 100%;
}
.items a {
width: 100%;
}
.burger {
display: block;
color: #4a4a4a;
cursor: pointer;
height: 3.25rem;
position: relative;
width: 3.25rem;
margin-left: auto;
}
2020-08-07 07:03:02 +02:00
}