2021-02-16 05:14:09 +01:00
|
|
|
.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;
|
2021-02-16 05:14:09 +01:00
|
|
|
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 {
|
2021-02-16 05:14:09 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: var(--font-size-normal);
|
|
|
|
font-weight: 600;
|
|
|
|
width: 100%;
|
2021-03-01 05:37:59 +01:00
|
|
|
justify-content: space-between;
|
2021-02-16 05:14:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.items {
|
2020-08-05 07:45:05 +02:00
|
|
|
display: flex;
|
2020-09-20 11:54:38 +02:00
|
|
|
justify-content: center;
|
2020-08-05 07:45:05 +02:00
|
|
|
align-items: center;
|
2020-09-10 01:12:29 +02:00
|
|
|
font-size: var(--font-size-normal);
|
|
|
|
font-weight: 600;
|
2020-08-05 07:45:05 +02:00
|
|
|
}
|
|
|
|
|
2020-09-20 20:28:38 +02:00
|
|
|
.nav a + a {
|
|
|
|
margin-left: 40px;
|
2020-08-05 07:45:05 +02:00
|
|
|
}
|
2020-08-07 07:03:02 +02:00
|
|
|
|
2020-09-20 11:54:38 +02:00
|
|
|
.buttons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
2020-09-27 07:02:10 +02:00
|
|
|
align-items: center;
|
2020-09-20 11:54:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 992px) {
|
|
|
|
.nav {
|
|
|
|
font-size: var(--font-size-large);
|
2021-03-01 05:37:59 +01:00
|
|
|
justify-content: space-between;
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
.items {
|
|
|
|
flex-wrap: wrap;
|
2020-09-20 11:54:38 +02:00
|
|
|
}
|
2021-01-03 12:32:25 +01:00
|
|
|
}
|
2020-09-20 11:54:38 +02:00
|
|
|
|
2021-03-01 05:37:59 +01:00
|
|
|
@media only screen and (max-width: 768px) {
|
2021-01-03 12:32:25 +01:00
|
|
|
.header {
|
|
|
|
padding: 0 15px;
|
2020-09-20 11:54:38 +02:00
|
|
|
}
|
2021-02-16 05:14:09 +01:00
|
|
|
|
2021-03-30 12:13:11 +02:00
|
|
|
.title {
|
|
|
|
padding: 0.5rem;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
2021-02-09 11:54:59 +01:00
|
|
|
.nav {
|
|
|
|
font-size: var(--font-size-normal);
|
2021-02-16 05:14:09 +01:00
|
|
|
flex-wrap: wrap;
|
2021-03-01 05:37:59 +01:00
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
2021-02-16 05:14:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2021-03-01 05:37:59 +01:00
|
|
|
/* color: #4a4a4a; */
|
2021-03-30 11:54:50 +02:00
|
|
|
background: none;
|
|
|
|
border: 1px solid var(--gray900);
|
|
|
|
border-radius: 4px;
|
2021-02-16 05:14:09 +01:00
|
|
|
cursor: pointer;
|
|
|
|
height: 3.25rem;
|
|
|
|
width: 3.25rem;
|
|
|
|
margin-left: auto;
|
2021-03-01 05:37:59 +01:00
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.burger span {
|
2021-03-30 11:54:50 +02:00
|
|
|
transform: translateX(25%);
|
2021-03-01 05:37:59 +01:00
|
|
|
padding: 1px 0px;
|
|
|
|
margin: 6px 0;
|
2021-03-30 11:54:50 +02:00
|
|
|
width: 65%;
|
2021-03-01 05:37:59 +01:00
|
|
|
display: block;
|
2021-03-30 11:54:50 +02:00
|
|
|
background-color: var(--gray900);
|
2021-03-01 05:37:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.burger div {
|
2021-03-30 11:54:50 +02:00
|
|
|
/* height: 100%; */
|
|
|
|
color: var(--gray900);
|
2021-03-01 05:37:59 +01:00
|
|
|
text-align: center;
|
|
|
|
margin: auto;
|
|
|
|
font-size: 1.5rem;
|
2021-03-30 11:54:50 +02:00
|
|
|
/* transform: translateX(-50%); */
|
2021-02-09 11:54:59 +01:00
|
|
|
}
|
2020-08-07 07:03:02 +02:00
|
|
|
}
|