This commit is contained in:
2023-08-09 09:06:05 +02:00
parent 5f1493088a
commit d0e04677c7
14 changed files with 148 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
.footer {
display: flex;
display: grid;
justify-content: center;
padding-block: 2rem 5rem;
padding-block: 2rem 3rem;
background: var(--color-white);
}
@@ -16,3 +16,8 @@
.footer__content ul + ul {
margin-top: 1.5rem;
}
.footer__tail {
margin-top: 3rem;
text-align: center;
}

View File

@@ -14,6 +14,10 @@
box-shadow: unset;
}
.header.is-open .header__section{
border-bottom: 0.0625rem solid var(--color-black);
}
.header.is-open .header__mobile {
display: block;
}
@@ -29,11 +33,12 @@
.header__mobile {
display: none;
position: fixed;
top: 5rem;
top: 5.0625rem;
left: 0;
width: 100%;
height: calc(100% - 4.75rem);
background-color: var(--color-white);
overflow-y: auto;
z-index: 20;
}

View File

@@ -259,3 +259,38 @@
overflow-y: auto;
margin-bottom: 0.625rem;
}
.section--gdpr {
display: none;
position: fixed;
top: 0;
left: 0;
z-index: 100;
width: 100vw;
height: 100vh;
background-color: var(--color-white);
overflow: auto;
}
.section--gdpr.is-open {
display: block;
}
.section--gdpr h2,h3{
text-align: center;
padding-inline: 1rem;
}
.section--gdpr .list{
margin-inline: auto;
max-width: 50rem;
}
.section--gdpr .list li {
padding-inline: 1rem;
margin-bottom: 1.5rem;
}
.section--gdpr .list.prologue li {
margin-bottom: 0.5rem;
}

View File

@@ -82,7 +82,6 @@
.list--mobile {
text-align: center;
font-size: 1.375rem;
border-top: 0.0625rem solid var(--color-black);
padding-top: 0.75rem;
}