2020-12-22 14:47:58 +01:00
|
|
|
/*
|
|
|
|
* Namensschema der CSS-Klassen nach BEM (Block Element Modifier,
|
|
|
|
* http://getbem.com/naming/). Mit der Erweiterung, dass Modifier einzeln
|
|
|
|
* mit Bindestrich angegeben werden. Also:
|
|
|
|
*
|
|
|
|
* <li class="navlist__navitem -active">
|
|
|
|
* statt
|
|
|
|
* <li class="navlist__navitem navlist__navitem--active">
|
|
|
|
*
|
|
|
|
* Das ist weniger redundant und übersichtlicher. Der passende CSS-Selektor
|
|
|
|
* dazu ist:
|
|
|
|
*
|
|
|
|
* .navlist__navitem.-active
|
|
|
|
*/
|
|
|
|
|
|
|
|
:root {
|
2021-02-01 21:35:06 +01:00
|
|
|
/* default text color */
|
2021-03-14 18:16:00 +01:00
|
|
|
--wtf-nearly-black: #333;
|
|
|
|
--wtf-nearly-white: #fff;
|
2021-05-20 01:36:37 +02:00
|
|
|
/* WTF Farben gemäß https://git.wtf-eg.de/ag_kommunikation/wtf_propaganda/ */
|
2021-04-07 21:17:05 +02:00
|
|
|
--wtf-orange: #ef7c21;
|
2021-02-01 21:35:06 +01:00
|
|
|
--wtf-light-orange: #ffcba9;
|
2021-02-21 17:01:40 +01:00
|
|
|
--wtf-very-light-blue: #cfe2ff;
|
2021-04-07 21:17:05 +02:00
|
|
|
--wtf-light-blue: #0790a9;
|
|
|
|
--wtf-dark-blue: #20386a;
|
2021-02-01 21:35:06 +01:00
|
|
|
--wtf-night-blue: #00173B;
|
2020-12-22 14:47:58 +01:00
|
|
|
--wtf-dark-grey: #202020;
|
|
|
|
--wtf-grey: #666;
|
2021-05-20 01:36:37 +02:00
|
|
|
--wtf-mid-grey: #acacac;
|
2021-03-09 18:37:03 +01:00
|
|
|
--wtf-footer-grey: #344b5d;
|
2021-02-01 21:35:06 +01:00
|
|
|
--wtf-light-grey: #edefeb;
|
2021-02-18 19:01:33 +01:00
|
|
|
--wtf-lila: #6600ff;
|
2020-12-22 14:47:58 +01:00
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
--column-count: 3;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: 'Lato', sans-serif;
|
|
|
|
font-weight: normal;
|
2021-03-21 17:15:38 +01:00
|
|
|
line-height: 1.5rem;
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-black);
|
2021-02-01 21:35:06 +01:00
|
|
|
background-color: var(--wtf-light-grey)
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* nav - Start */
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__primary_nav {
|
2020-12-22 14:47:58 +01:00
|
|
|
width: 100%;
|
2021-02-01 21:35:06 +01:00
|
|
|
grid-row: 1 / span 1;
|
|
|
|
grid-column: 1 / span 3;
|
|
|
|
|
2020-12-22 14:47:58 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
2021-02-20 14:55:43 +01:00
|
|
|
|
|
|
|
background-color: var(--wtf-light-grey);
|
2021-02-20 16:34:03 +01:00
|
|
|
z-index: 20;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__toggle {
|
2020-12-22 14:47:58 +01:00
|
|
|
display: none;
|
|
|
|
height: 3.375rem;
|
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__toggle svg {
|
2020-12-22 14:47:58 +01:00
|
|
|
margin: 0.25rem 0 0 0;
|
|
|
|
width: 2rem;
|
|
|
|
height: 2rem;
|
|
|
|
padding: 0;
|
|
|
|
position: relative;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__toggle rect {
|
2021-03-14 18:16:00 +01:00
|
|
|
fill: var(--wtf-nearly-black);
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__toggle p {
|
|
|
|
margin: 0.5rem 0 0 0;
|
2020-12-22 14:47:58 +01:00
|
|
|
padding: 0;
|
|
|
|
position: relative;
|
|
|
|
left: -0.2rem;
|
|
|
|
bottom: 0.65rem;
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-black);
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__navlist {
|
2020-12-22 14:47:58 +01:00
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__navitem {
|
|
|
|
margin: 0 0.25rem;
|
|
|
|
padding: 0.25rem 0.25rem 0 1.5rem;
|
2020-12-22 14:47:58 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
font-size: 1.25rem;
|
|
|
|
}
|
|
|
|
|
2021-04-11 16:08:56 +02:00
|
|
|
.primary_nav__navlink.-active,
|
|
|
|
.primary_nav__sub_navlink.-active {
|
2021-02-01 21:35:06 +01:00
|
|
|
color: var(--wtf-orange);
|
2021-04-11 16:08:56 +02:00
|
|
|
text-decoration: underline;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__navitem.-last, .primary_nav__navitem.-last a {
|
|
|
|
margin-right: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__navlink {
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-black);
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
2021-04-11 16:08:56 +02:00
|
|
|
.primary_nav__sub_navlink {
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-white);
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__navlink:hover {
|
2020-12-22 14:47:58 +01:00
|
|
|
color: var(--wtf-mid-grey);
|
2021-02-01 21:35:06 +01:00
|
|
|
text-decoration: underline;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__sub_navlist {
|
2020-12-22 14:47:58 +01:00
|
|
|
display: none;
|
2021-02-01 21:35:06 +01:00
|
|
|
z-index: 20;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__navlist > li:hover > .primary_nav__sub_navlist {
|
2020-12-22 14:47:58 +01:00
|
|
|
display: block;
|
2021-02-01 21:35:06 +01:00
|
|
|
margin: 2.6rem 0 0 -0.5rem;
|
2020-12-22 14:47:58 +01:00
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
2021-02-01 21:35:06 +01:00
|
|
|
background-color: var(--wtf-dark-blue);
|
|
|
|
border-left: 2px solid var(--wtf-mid-grey);
|
|
|
|
border-right: 2px solid var(--wtf-mid-grey);
|
|
|
|
border-bottom: 2px solid var(--wtf-mid-grey);
|
|
|
|
box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.35);
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2021-03-06 14:47:01 +01:00
|
|
|
* Gleicht zusammen mit padding von .primary_nav__navitem die Verschiebung durch
|
|
|
|
* Submenümarker aus.
|
2020-12-22 14:47:58 +01:00
|
|
|
*/
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__navitem .primary_nav__navlink {
|
2020-12-22 14:47:58 +01:00
|
|
|
display: inline-block;
|
|
|
|
padding-right: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Greift wenn Submenü vorhanden ist */
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__navlist li a:first-child:nth-last-child(2) {
|
2020-12-22 14:47:58 +01:00
|
|
|
padding-right: 0;
|
2021-02-01 21:35:06 +01:00
|
|
|
width: 110%;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Malt bei vorhandenem Submenü den Pfeil */
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__navlist li a:first-child:nth-last-child(2):after {
|
2020-12-22 14:47:58 +01:00
|
|
|
content: "";
|
|
|
|
position: relative;
|
|
|
|
top: -0.125rem;
|
|
|
|
left: 0.5rem;
|
|
|
|
height: 5px;
|
|
|
|
width: 5px;
|
|
|
|
display: inline-block;
|
|
|
|
transform: rotate(0.125turn);
|
2021-03-14 18:16:00 +01:00
|
|
|
border-bottom: 3px solid var(--wtf-nearly-black);
|
|
|
|
border-right: 3px solid var(--wtf-nearly-black);
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__sub_navitem {
|
2020-12-22 14:47:58 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0.5rem 0.5rem;
|
|
|
|
list-style: none;
|
|
|
|
text-align: left;
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.header__secondary_nav {
|
|
|
|
margin: 4.5rem 0.5rem 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.secondary_nav__navlist {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.secondary_nav__navitem {
|
|
|
|
display: inline-block;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.secondary_nav__navlink {
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-black);
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.secondary_nav__navlink:hover {
|
|
|
|
color: var(--wtf-mid-grey);
|
|
|
|
text-decoration: underline;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
/* nav - Ende */
|
|
|
|
|
|
|
|
/* header - Start */
|
|
|
|
header {
|
2021-02-01 21:35:06 +01:00
|
|
|
background-color: var(--wtf-light-grey);
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0;
|
|
|
|
max-width: 1200px;
|
2020-12-22 14:47:58 +01:00
|
|
|
display: flex;
|
2021-02-01 21:35:06 +01:00
|
|
|
flex-direction: column;
|
2021-03-07 16:20:19 +01:00
|
|
|
margin-bottom: 3rem;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__top_box {
|
|
|
|
grid-row: 1 / span 1;
|
|
|
|
grid-column: 1 / span 5;
|
2020-12-22 14:47:58 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2021-02-01 21:35:06 +01:00
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__logo_box {
|
|
|
|
grid-row: 1 / span 1;
|
|
|
|
}
|
|
|
|
|
2021-03-07 16:20:19 +01:00
|
|
|
.header__button,
|
|
|
|
.content__button,
|
2021-04-06 18:24:25 +02:00
|
|
|
.claim__button,
|
|
|
|
.pod_ctrl_box__button {
|
2021-02-01 21:35:06 +01:00
|
|
|
height: 3rem;
|
|
|
|
margin: 1.5rem 1rem 0rem 0;
|
2021-03-18 01:58:45 +01:00
|
|
|
padding: 0.5rem 2rem 0.5rem 2rem;
|
2021-02-01 21:35:06 +01:00
|
|
|
background-color: var(--wtf-light-blue);
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-white);
|
2021-02-01 21:35:06 +01:00
|
|
|
font-size: 1.2rem;
|
2021-03-14 18:16:00 +01:00
|
|
|
border: solid var(--wtf-nearly-white) 3px;
|
2021-02-01 21:35:06 +01:00
|
|
|
border-radius: 2rem;
|
|
|
|
}
|
|
|
|
|
2021-04-06 18:24:25 +02:00
|
|
|
.pod_ctrl_box__button {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0;
|
|
|
|
margin: 1.5rem 0 0 0;
|
|
|
|
max-width: 20rem;
|
|
|
|
}
|
|
|
|
|
2021-03-06 18:02:02 +01:00
|
|
|
.content__button {
|
|
|
|
width: 70%;
|
2021-03-21 18:07:37 +01:00
|
|
|
margin-top: 0;
|
2021-03-06 18:02:02 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__bg_box {
|
|
|
|
margin-top: -0.75rem;
|
2021-02-20 14:55:43 +01:00
|
|
|
|
2021-02-24 23:46:47 +01:00
|
|
|
background-image: url("../images/wtf-header-bg.jpg");
|
2021-02-20 14:55:43 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
2021-02-01 21:35:06 +01:00
|
|
|
|
|
|
|
display: grid;
|
2021-03-07 16:20:19 +01:00
|
|
|
grid-template-rows: 46px 18px 12rem 8.5rem 55px 18px;
|
2021-02-17 00:11:47 +01:00
|
|
|
grid-template-columns: 15% 82px auto 96px 22.5%;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__slim_box {
|
|
|
|
margin-top: -0.75rem;
|
2021-03-02 22:40:11 +01:00
|
|
|
padding-bottom: 6em;
|
|
|
|
background-image: url("../images/wtf-header-bg.jpg");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
2021-02-17 00:11:47 +01:00
|
|
|
|
|
|
|
display: grid;
|
2021-02-21 11:37:22 +01:00
|
|
|
grid-template-rows: 46px 18px;
|
2021-02-01 21:35:06 +01:00
|
|
|
grid-template-columns: 15% 82px auto 96px 22.5%;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
2021-02-21 11:37:22 +01:00
|
|
|
.bg_box__top_bar_left, .slim_box__top_bar_left {
|
2021-02-01 21:35:06 +01:00
|
|
|
grid-row: 2 / span 1;
|
|
|
|
grid-column: 1 / span 3;
|
2021-02-20 14:55:43 +01:00
|
|
|
background-color: var(--wtf-light-blue);
|
2021-02-01 21:35:06 +01:00
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
2021-02-21 11:37:22 +01:00
|
|
|
.bg_box__top_bar_middle, .slim_box__top_bar_middle {
|
2021-02-01 21:35:06 +01:00
|
|
|
grid-row: 1 / span 2;
|
|
|
|
grid-column: 4 / span 1;
|
|
|
|
background-image: url("../images/header_top_triangles.svg");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
2021-02-21 11:37:22 +01:00
|
|
|
.slim_box__top_bar_middle {
|
2021-03-02 22:40:11 +01:00
|
|
|
background-image: url("../images/header_top_triangles.svg");
|
2021-02-21 11:37:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.bg_box__top_bar_right, .slim_box__top_bar_right {
|
2021-02-01 21:35:06 +01:00
|
|
|
grid-row: 1 / span 2;
|
|
|
|
grid-column: 5 / span 1;
|
2021-02-21 11:37:22 +01:00
|
|
|
background-color: transparent;
|
2021-02-01 21:35:06 +01:00
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg_box__unicorns {
|
2021-03-07 16:20:19 +01:00
|
|
|
grid-row: 2 / span 5;
|
2021-02-01 21:35:06 +01:00
|
|
|
grid-column: 1 / span 5;
|
|
|
|
background-image: url("../images/white_unicorns.svg");
|
|
|
|
background-position: top 5% left 95% ;
|
2021-03-07 16:20:19 +01:00
|
|
|
background-size: auto 80%;
|
2021-02-01 21:35:06 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
2021-03-02 22:40:11 +01:00
|
|
|
.slim_box__unicorns {
|
|
|
|
grid-row: 1 / span 2;
|
|
|
|
grid-column: 1 / span 5;
|
|
|
|
background-image: url("../images/translucent_unicorns.svg");
|
|
|
|
background-position: top 1rem left 95% ;
|
|
|
|
background-size: auto 115%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
z-index: 10;
|
|
|
|
margin-bottom: -6em;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.bg_box__big_bg {
|
|
|
|
grid-row: 3 / span 2;
|
|
|
|
grid-column: 1 / span 5;
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg_box__bottom_bar_left {
|
|
|
|
grid-row: 5 / span 1;
|
|
|
|
grid-column: 1 / span 3;
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg_box__bottom_bar_middle {
|
|
|
|
grid-row: 5 / span 2;
|
|
|
|
grid-column: 2 / span 1;
|
|
|
|
background-image: url("../images/header_bottom_triangles.svg");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg_box__bottom_bar_right {
|
|
|
|
grid-row: 5 / span 2;
|
|
|
|
grid-column: 3 / span 3;
|
|
|
|
background-color: var(--wtf-dark-blue);
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg_box__very_bottom_bar {
|
|
|
|
grid-row: 6 / span 1;
|
|
|
|
grid-column: 1 / span 2;
|
|
|
|
background-color: var(--wtf-dark-blue);
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__claim {
|
|
|
|
margin: 2rem 0 0 2.5rem;
|
|
|
|
grid-row: 3 / span 1;
|
|
|
|
grid-column: 1 / span 5;
|
|
|
|
z-index: 15;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__claim h2 {
|
|
|
|
font-family: 'Noto Serif', serif;
|
|
|
|
font-weight: 700;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 1.75rem;
|
|
|
|
line-height: 1.3em;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__claim h2 em {
|
|
|
|
color: var(--wtf-orange);
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__claim h2 span {
|
|
|
|
display: inline-block;
|
2021-03-14 18:16:00 +01:00
|
|
|
background-color: var(--wtf-nearly-white);
|
2021-02-01 21:35:06 +01:00
|
|
|
margin-top: 1px;
|
|
|
|
padding: 0 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__claim p, .header__sub_claim p {
|
|
|
|
font-family: 'Lato', sans-serif;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1.4rem;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
line-height: 1.3em;
|
|
|
|
margin: 0.5em 0 0 1em;
|
2021-03-17 21:39:51 +01:00
|
|
|
color: var(--wtf-nearly-black);
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.header__sub_claim {
|
2021-03-07 16:20:19 +01:00
|
|
|
grid-row: 4 / span 3;
|
2021-02-01 21:35:06 +01:00
|
|
|
grid-column: 3 / span 3;
|
2021-03-07 16:20:19 +01:00
|
|
|
margin: 3.5rem 2rem -3rem 1.5rem;
|
2021-02-01 21:35:06 +01:00
|
|
|
padding: 0.5rem 1.5rem 0 1.5rem;
|
|
|
|
background-color: var(--wtf-orange);
|
|
|
|
z-index: 15;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2021-03-07 16:20:19 +01:00
|
|
|
.sub_claim__box, .claim__background_box {
|
|
|
|
padding: 0.5rem 1.5rem 3.5rem 1.5rem;
|
2021-02-01 21:35:06 +01:00
|
|
|
background-color: var(--wtf-orange);
|
2021-03-07 16:20:19 +01:00
|
|
|
z-index: 5;
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
2021-03-07 16:20:19 +01:00
|
|
|
.sub_claim__button, .claim__button {
|
2021-02-01 21:35:06 +01:00
|
|
|
align-self: flex-end;
|
|
|
|
margin-top: -1.5rem;
|
2021-03-07 16:20:19 +01:00
|
|
|
z-index: 5;
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.header__sub_claim h2 {
|
|
|
|
font-family: 'Noto Serif', serif;
|
|
|
|
font-weight: 700;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 1.75rem;
|
|
|
|
line-height: 1.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__sub_claim p {
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-white);
|
2021-02-01 21:35:06 +01:00
|
|
|
margin: 0.5em 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__sub_claim a {
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-white);
|
2021-02-01 21:35:06 +01:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__sub_claim a:hover {
|
|
|
|
text-decoration: none;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
2021-02-06 16:18:30 +01:00
|
|
|
|
2021-03-07 16:20:19 +01:00
|
|
|
.content__inner_third_button_link,
|
2021-04-06 18:24:25 +02:00
|
|
|
.claim__button_link,
|
|
|
|
.pod_ctrl_box__button_link {
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-white) !important;
|
2021-04-06 18:24:25 +02:00
|
|
|
font-family: 'Lato Bold' !important;
|
2021-03-06 18:02:02 +01:00
|
|
|
}
|
|
|
|
|
2021-03-07 16:20:19 +01:00
|
|
|
.header__button_link,
|
|
|
|
.content__inner_third_button_link,
|
2021-04-06 18:24:25 +02:00
|
|
|
.claim__button_link,
|
|
|
|
.pod_ctrl_box__button_link {
|
2021-02-06 16:18:30 +01:00
|
|
|
text-decoration: none !important;
|
|
|
|
}
|
|
|
|
|
2021-03-07 16:20:19 +01:00
|
|
|
.header__button_link:hover,
|
|
|
|
.content__inner_third_button_link:hover,
|
2021-04-06 18:24:25 +02:00
|
|
|
.claim__button_link:hover,
|
|
|
|
.pod_ctrl_box__button_link:hover {
|
2021-02-06 16:18:30 +01:00
|
|
|
text-decoration: underline !important;
|
|
|
|
}
|
2020-12-22 14:47:58 +01:00
|
|
|
/* header - Ende */
|
|
|
|
|
|
|
|
/* main - Start */
|
2021-02-01 21:35:06 +01:00
|
|
|
main {
|
2021-02-21 11:37:22 +01:00
|
|
|
margin: 0;
|
2021-02-01 21:35:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
align-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-family: 'Noto Serif';
|
|
|
|
font-size: 3.5rem;
|
|
|
|
color: var(--wtf-orange);
|
2021-03-21 17:15:38 +01:00
|
|
|
margin: 1rem 0 0 0;
|
2021-03-21 17:56:28 +01:00
|
|
|
line-height: 1.3em;
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
2020-12-22 14:47:58 +01:00
|
|
|
h2 {
|
2021-02-01 21:35:06 +01:00
|
|
|
font-family: 'Noto Serif';
|
2020-12-22 14:47:58 +01:00
|
|
|
font-size: 2rem;
|
2021-03-21 17:15:38 +01:00
|
|
|
line-height: 1.1em;
|
2021-04-06 21:28:54 +02:00
|
|
|
margin: 1em 0 0.25em 0;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-03-06 18:02:02 +01:00
|
|
|
.content__inner_third_heading {
|
|
|
|
font-family: 'Lato';
|
|
|
|
font-size: 1.5rem;
|
|
|
|
color: var(--wtf-orange);
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2020-12-22 14:47:58 +01:00
|
|
|
h3 {
|
2021-02-01 21:35:06 +01:00
|
|
|
font-family: 'Noto Serif';
|
2020-12-22 14:47:58 +01:00
|
|
|
font-size: 1.75rem;
|
|
|
|
line-height: 1.3em;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
2021-02-01 21:35:06 +01:00
|
|
|
font-family: 'Noto Serif';
|
2020-12-22 14:47:58 +01:00
|
|
|
font-size: 1.5rem;
|
|
|
|
line-height: 1.3em;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
2021-02-01 21:35:06 +01:00
|
|
|
font-family: 'Noto Serif';
|
2020-12-22 14:47:58 +01:00
|
|
|
font-size: 1.25rem;
|
|
|
|
line-height: 1.2em;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h6 {
|
2021-02-01 21:35:06 +01:00
|
|
|
font-family: 'Noto Serif';
|
2020-12-22 14:47:58 +01:00
|
|
|
font-size: 1rem;
|
|
|
|
line-height: 1.2em;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2021-03-06 14:47:01 +01:00
|
|
|
margin-bottom: 1rem;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-03-21 17:15:38 +01:00
|
|
|
pre {
|
|
|
|
line-height: 1.5rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
margin-top: 0.15rem;
|
|
|
|
}
|
|
|
|
|
2020-12-22 14:47:58 +01:00
|
|
|
ul {
|
|
|
|
list-style: disc;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul, ol {
|
2021-03-21 17:27:43 +01:00
|
|
|
margin: 0 0 1rem 0.5rem;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ul ul, ol ol {
|
|
|
|
margin-left: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li {
|
|
|
|
list-style: disc;
|
|
|
|
}
|
|
|
|
|
|
|
|
ol li, ol {
|
2021-06-09 23:00:33 +02:00
|
|
|
list-style: decimal;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
|
|
|
|
2021-02-21 17:03:49 +01:00
|
|
|
i {
|
|
|
|
font-family: 'Lato Italic', sans-serif;
|
|
|
|
}
|
|
|
|
|
2021-03-21 17:15:38 +01:00
|
|
|
strong{
|
|
|
|
font-family: 'Lato Bold', sans-serif;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2021-02-21 17:03:49 +01:00
|
|
|
hr {
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-black);
|
2021-02-21 17:03:49 +01:00
|
|
|
margin: 0.25rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr.-even {
|
|
|
|
color: var(--wtf-light-grey);
|
|
|
|
}
|
|
|
|
|
2021-03-06 18:02:02 +01:00
|
|
|
.body__separator {
|
2021-03-07 10:34:23 +01:00
|
|
|
max-width: 1080px;
|
2021-03-06 18:02:02 +01:00
|
|
|
width: 90%;
|
|
|
|
margin: 3rem 0 0 0;
|
|
|
|
color: var(--wtf-orange);
|
|
|
|
}
|
|
|
|
|
2020-12-22 14:47:58 +01:00
|
|
|
.content {
|
2021-02-01 21:35:06 +01:00
|
|
|
padding: 1.5rem 0;
|
|
|
|
width: 100%;
|
2020-12-22 14:47:58 +01:00
|
|
|
display: flex;
|
2021-02-01 21:35:06 +01:00
|
|
|
flex-direction: column;
|
2020-12-22 14:47:58 +01:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2021-04-11 10:10:01 +02:00
|
|
|
.content.-no_pad {
|
|
|
|
padding: 0;
|
|
|
|
margin-top: -1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-02-21 17:03:49 +01:00
|
|
|
.content__blog_link.-odd {
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-black) !important;
|
2021-02-21 17:03:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.content__blog_link.-even {
|
|
|
|
color: var(--wtf-very-light-blue) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content__blog_link:hover {
|
|
|
|
color: var(--wtf-mid-grey) !important;
|
|
|
|
}
|
|
|
|
|
2021-04-10 22:13:17 +02:00
|
|
|
.content__box,
|
|
|
|
.content__half_box,
|
|
|
|
.content__third_box,
|
|
|
|
.content__aggregate_box {
|
2021-02-01 21:35:06 +01:00
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-04-10 22:13:17 +02:00
|
|
|
.content__half_box,
|
|
|
|
.content__third_box,
|
|
|
|
.content__aggregate_box {
|
2021-03-06 14:47:01 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2021-04-10 22:13:17 +02:00
|
|
|
.content__aggregate_box {
|
|
|
|
flex-wrap: wrap;
|
2021-04-11 10:10:01 +02:00
|
|
|
justify-content: space-between;
|
2021-04-10 22:13:17 +02:00
|
|
|
}
|
|
|
|
|
2021-03-06 14:47:01 +01:00
|
|
|
.content__inner_half_box {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
2021-03-06 18:02:02 +01:00
|
|
|
.content__inner_third_box {
|
2021-04-10 22:13:17 +02:00
|
|
|
flex-basis: 33%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content__inner_aggregate_box {
|
2021-04-11 10:10:01 +02:00
|
|
|
margin: 1.5rem 1.5rem;
|
2021-04-10 22:13:17 +02:00
|
|
|
flex-basis: 40%;
|
|
|
|
min-width: 300px;
|
2021-03-06 18:02:02 +01:00
|
|
|
}
|
|
|
|
|
2021-03-07 16:20:19 +01:00
|
|
|
.flex_heading {
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.claim {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.claim__text {
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-white);
|
2021-03-07 16:20:19 +01:00
|
|
|
font-size: 1.2rem;
|
|
|
|
line-height: 1.4em;
|
|
|
|
margin: 0.5rem 0 1.5rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.claim__button {
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
margin: 3rem 1.5rem 0 1.5rem;
|
|
|
|
max-width: 300px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card__icon {
|
|
|
|
width: 7rem;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card__heading {
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-white);
|
2021-03-07 16:20:19 +01:00
|
|
|
font-family: 'Lato';
|
|
|
|
font-size: 1.3rem;
|
|
|
|
margin: 1rem 0;
|
|
|
|
}
|
|
|
|
|
2021-03-16 18:27:36 +01:00
|
|
|
.card__heading.-homepage {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2021-03-07 16:20:19 +01:00
|
|
|
.card__text {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2021-03-06 18:02:02 +01:00
|
|
|
.content__inner_third_image {
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-04-10 22:13:17 +02:00
|
|
|
.content__inner_third_heading_link,
|
|
|
|
.content__aggregate_heading_link {
|
2021-03-06 18:02:02 +01:00
|
|
|
color: var(--wtf-light-blue);
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2021-04-10 22:13:17 +02:00
|
|
|
.content__inner_third_heading_link:hover,
|
|
|
|
.content__aggregate_heading_link:hover {
|
2021-03-06 18:02:02 +01:00
|
|
|
color: var(--wtf-dark-grey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.content__button_box {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-04-06 18:24:25 +02:00
|
|
|
.content__button, {
|
2021-03-06 18:02:02 +01:00
|
|
|
display: block;
|
2021-03-21 18:07:37 +01:00
|
|
|
margin: 0 auto 0 auto;
|
2021-03-06 18:02:02 +01:00
|
|
|
}
|
|
|
|
|
2021-03-06 14:47:01 +01:00
|
|
|
.content__teaser {
|
|
|
|
color: var(--wtf-orange);
|
|
|
|
font-size: 1.15rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content__footer {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content__inline_image {
|
|
|
|
height: 1.25rem;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2021-03-06 18:02:02 +01:00
|
|
|
.content__half_box_image, .content__inner_third_image {
|
2021-03-06 14:47:01 +01:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-02-21 17:01:13 +01:00
|
|
|
.content__box p, .content__box li {
|
|
|
|
hyphens: auto;
|
|
|
|
}
|
|
|
|
|
2021-04-06 18:24:25 +02:00
|
|
|
.content__box a,
|
|
|
|
.pagination__anchor,
|
|
|
|
.content__half_box a {
|
2021-02-21 17:01:13 +01:00
|
|
|
color: var(--wtf-orange);
|
|
|
|
}
|
|
|
|
|
2021-04-06 18:24:25 +02:00
|
|
|
.content__box a:hover,
|
|
|
|
.pagination__anchor:hover,
|
|
|
|
.content__half_box a:hover {
|
2021-02-21 17:01:13 +01:00
|
|
|
color: var(--wtf-light-blue);
|
|
|
|
}
|
|
|
|
|
2021-04-06 18:24:25 +02:00
|
|
|
.content__box a:visited,
|
|
|
|
.pagination__anchor:visited,
|
2021-04-11 10:10:01 +02:00
|
|
|
.content__half_box a:visited,
|
2021-02-21 17:03:49 +01:00
|
|
|
.pagination__anchor.-even:visited {
|
|
|
|
color: var(--wtf-light-blue);
|
|
|
|
}
|
|
|
|
|
2021-02-21 11:37:22 +01:00
|
|
|
.content__inner_box.-logo_header {
|
|
|
|
margin: 3.5rem 1.5rem 0 1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-03-06 18:02:02 +01:00
|
|
|
.content__inner_box, .content__inner_half_box, .content__inner_third_box {
|
2021-02-21 11:37:22 +01:00
|
|
|
margin: -0.5rem 1.5rem 0 1.5rem;
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
2021-04-10 22:13:17 +02:00
|
|
|
.content__rss_logo {
|
|
|
|
display: inline;
|
|
|
|
height: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content__rss_logo_heading,
|
|
|
|
.content__podcast_logo_heading {
|
|
|
|
height: 1.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-02-21 17:03:49 +01:00
|
|
|
.content__pagination {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content__pagination.-even {
|
|
|
|
color: var(--wtf-light-grey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination__anchor.-even {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-03-06 14:47:01 +01:00
|
|
|
.nav__wrapper,
|
|
|
|
.header__wrapper,
|
|
|
|
.content__box,
|
|
|
|
.content__half_box,
|
2021-03-07 10:34:23 +01:00
|
|
|
.footer__wrapper,
|
2021-04-10 22:13:17 +02:00
|
|
|
.content__third_box,
|
|
|
|
.content__aggregate_box {
|
2020-12-22 14:47:58 +01:00
|
|
|
width: 100%;
|
2021-02-01 21:35:06 +01:00
|
|
|
max-width: 1200px;
|
2020-12-22 14:47:58 +01:00
|
|
|
orphans: 3;
|
|
|
|
widows: 2;
|
|
|
|
}
|
|
|
|
|
2021-02-21 17:03:49 +01:00
|
|
|
.content__box.-heading {
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-03-16 18:27:36 +01:00
|
|
|
.content__box.-card_box.-homepage {
|
2021-03-07 16:20:19 +01:00
|
|
|
margin-top: -7rem;
|
|
|
|
padding-top: 7rem;
|
2021-03-16 18:27:36 +01:00
|
|
|
}
|
2021-03-07 16:20:19 +01:00
|
|
|
|
2021-03-16 18:27:36 +01:00
|
|
|
.content__box.-card_box {
|
2021-03-07 16:20:19 +01:00
|
|
|
/*
|
|
|
|
* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#729baf+0,8ea8a9+100
|
|
|
|
*
|
|
|
|
* Dunkler, Kontrast zum Fließtext und zum Koffer-Icon fragwürdig.
|
|
|
|
*/
|
|
|
|
background: #729baf;
|
|
|
|
background: -moz-linear-gradient(45deg, #729baf 0%, #8ea8a9 100%);
|
|
|
|
background: -webkit-linear-gradient(45deg, #729baf 0%,#8ea8a9 100%);
|
|
|
|
background: linear-gradient(45deg, #729baf 0%,#8ea8a9 100%);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5491ad+0,add7d8+100
|
|
|
|
*
|
|
|
|
* Heller, Kontrast zur Überschrift und zum Group-Icon fragwürdig.
|
|
|
|
*
|
|
|
|
background: #5491ad;
|
|
|
|
background: -moz-linear-gradient(45deg, #5491ad 0%, #add7d8 100%);
|
|
|
|
background: -webkit-linear-gradient(45deg, #5491ad 0%,#add7d8 100%);
|
|
|
|
background: linear-gradient(45deg, #5491ad 0%,#add7d8 100%);
|
|
|
|
*/
|
|
|
|
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content__inner_box.-card_box,
|
|
|
|
.content__inner_box.-card_box_head {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
width: 100%;
|
|
|
|
padding-bottom: 3rem;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-03-10 20:02:34 +01:00
|
|
|
.content__inner_box.-card_box_head {
|
|
|
|
margin-bottom: -5rem;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.content__box.-columns {
|
2020-12-22 14:47:58 +01:00
|
|
|
-webkit-column-count: var(--column-count);
|
|
|
|
-moz-column-count: var(--column-count);
|
|
|
|
column-count: var(--column-count);
|
|
|
|
}
|
|
|
|
|
2021-03-21 17:28:14 +01:00
|
|
|
.content__inner_box.-width_constraint {
|
|
|
|
max-width: 75ch;
|
|
|
|
}
|
|
|
|
|
2020-12-22 14:47:58 +01:00
|
|
|
.content.-odd {
|
|
|
|
background-color: var(--wtf-light-grey);
|
|
|
|
color: var(--wtf-dark-grey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.content.-even {
|
2021-02-01 21:35:06 +01:00
|
|
|
background-color: var(--wtf-night-blue);
|
2020-12-22 14:47:58 +01:00
|
|
|
color: var(--wtf-light-grey);
|
|
|
|
}
|
2021-04-06 18:24:25 +02:00
|
|
|
|
|
|
|
.pod_ctrl_box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
2020-12-22 14:47:58 +01:00
|
|
|
/* main - Ende */
|
|
|
|
|
|
|
|
/* footer - Start */
|
|
|
|
footer {
|
2021-03-09 18:37:03 +01:00
|
|
|
background-color: var(--wtf-footer-grey);
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-white);
|
2021-03-17 20:19:35 +01:00
|
|
|
margin-top: 5rem;
|
2021-03-14 18:01:33 +01:00
|
|
|
padding: 0 0 3% 0;
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: 46px auto;
|
|
|
|
grid-template-columns: auto 68px 15%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer__wrapper {
|
|
|
|
grid-column: 1 / span 3;
|
2020-12-22 14:47:58 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
2021-03-14 18:01:33 +01:00
|
|
|
padding-top: 3%;
|
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer__top_bar_left {
|
|
|
|
background-color: var(--wtf-light-grey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer__top_bar_mid {
|
|
|
|
background-image: url("../images/footer_triangles.svg");
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer__top_bar_right {
|
|
|
|
background-color: var(--wtf-footer-grey);
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-03-14 18:01:33 +01:00
|
|
|
.footer__content_box {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer__nav {
|
2020-12-22 14:47:58 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
2021-02-01 21:35:06 +01:00
|
|
|
flex-wrap: wrap;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
2021-03-21 12:22:28 +01:00
|
|
|
.footer__social_logo {
|
2021-03-09 18:52:12 +01:00
|
|
|
max-width: 30px;
|
2021-03-21 12:22:28 +01:00
|
|
|
display: inline-block;
|
|
|
|
padding-top: 0.25rem;
|
2021-03-09 18:52:12 +01:00
|
|
|
}
|
2020-12-22 14:47:58 +01:00
|
|
|
|
|
|
|
.footer__navitem {
|
|
|
|
display: inline-block;
|
2021-03-09 18:52:12 +01:00
|
|
|
padding: 0.5rem 2rem;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer__navlink {
|
2021-03-09 18:52:12 +01:00
|
|
|
color: var(--wtf-light-grey);
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer__navlink:hover {
|
2021-03-09 18:52:12 +01:00
|
|
|
color: var(--wtf-dark-grey);
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* footer - Ende */
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
@media screen and (min-width: 1200px) {
|
|
|
|
.primary_nav__members, .primary_nav__lang_switch {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__toggle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__navlist {
|
|
|
|
display: flex !important;
|
|
|
|
}
|
2021-02-21 11:37:22 +01:00
|
|
|
|
|
|
|
.content__inner_box {
|
|
|
|
margin: -0.5rem 1.5rem 0 1.5rem;
|
|
|
|
}
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1100px) and (max-width: 1200px) {
|
|
|
|
.header__top_box .header__button {
|
|
|
|
display: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__bg_box {
|
|
|
|
grid-template-columns: 15% 82px auto 96px 22.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__members, .primary_nav__lang_switch {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__toggle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__navlist {
|
|
|
|
display: flex !important;
|
|
|
|
}
|
2021-02-21 11:37:22 +01:00
|
|
|
|
|
|
|
.content__inner_box {
|
|
|
|
margin: -0.5rem 1.5rem 0 1.5rem;
|
|
|
|
}
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1099px) and (min-width: 910px) {
|
|
|
|
.header__bg_box {
|
|
|
|
grid-template-columns: 5% 82px auto 96px 22.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__sub_claim {
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__top_box .header__button {
|
|
|
|
display: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__members, .primary_nav__lang_switch {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__toggle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__navlist {
|
|
|
|
display: flex !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.secondary_nav__navlist {
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
}
|
2021-02-20 16:03:03 +01:00
|
|
|
|
|
|
|
.content__inner_box {
|
2021-02-21 11:37:22 +01:00
|
|
|
margin: -0.5rem 1.5rem 0 1.5rem;
|
2021-02-20 16:03:03 +01:00
|
|
|
}
|
2021-03-06 18:02:02 +01:00
|
|
|
|
|
|
|
.content__button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-03-10 20:02:34 +01:00
|
|
|
|
|
|
|
.content__inner_box.-card_box_head {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1044px) and (min-width: 960px) {
|
2021-03-07 16:20:19 +01:00
|
|
|
header {
|
|
|
|
margin-bottom: 4rem;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__bg_box {
|
|
|
|
grid-template-columns: 15% 82px auto 96px 22.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg_box__unicorns {
|
|
|
|
background-image: url("../images/white_unicorns.svg");
|
|
|
|
background-size: auto 150%;
|
2021-02-20 16:03:03 +01:00
|
|
|
background-position: top -100px right -580px;
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.header__top_box .header__button {
|
|
|
|
display: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__members, .primary_nav__lang_switch {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__toggle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__navlist {
|
|
|
|
display: flex !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.secondary_nav__navlist {
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
}
|
2021-02-21 11:37:22 +01:00
|
|
|
|
|
|
|
.content__inner_box {
|
|
|
|
margin: -0.5rem 1.5rem 0 1.5rem;
|
|
|
|
}
|
2021-03-06 18:02:02 +01:00
|
|
|
|
|
|
|
.content__button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-03-07 16:20:19 +01:00
|
|
|
|
|
|
|
.content__inner_box.-card_box_head {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex_heading {
|
|
|
|
margin: 1.5rem 0 -1.5rem 1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-03-16 18:27:36 +01:00
|
|
|
.content__box.-card_box.-homepage {
|
2021-03-07 16:20:19 +01:00
|
|
|
margin-top: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 959px) and (min-width: 790px) {
|
2021-03-07 16:20:19 +01:00
|
|
|
header {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__bg_box {
|
|
|
|
grid-template-columns: 15% 82px auto 96px 22.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg_box__unicorns {
|
|
|
|
background-image: url("../images/white_unicorns.svg");
|
|
|
|
background-size: auto 150%;
|
2021-02-20 16:03:03 +01:00
|
|
|
background-position: top -100px right -630px;
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.header__claim {
|
|
|
|
margin: 2rem 0 0 1.5rem;
|
|
|
|
grid-row: 3 / span 1;
|
|
|
|
grid-column: 1 / span 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__sub_claim {
|
|
|
|
grid-column: 1 / span 5;
|
|
|
|
padding: 0;
|
2021-02-20 16:03:03 +01:00
|
|
|
margin: 2rem 1.5rem -3rem 1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__top_box .header__button {
|
|
|
|
display: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__members, .primary_nav__lang_switch {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__toggle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__navlist {
|
|
|
|
display: flex !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.secondary_nav__navlist {
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
}
|
2021-02-21 11:37:22 +01:00
|
|
|
|
|
|
|
.content__inner_box {
|
|
|
|
margin: -0.5rem 1.5rem 0 1.5rem;
|
|
|
|
}
|
2021-03-06 18:02:02 +01:00
|
|
|
|
|
|
|
.content__button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-03-07 16:20:19 +01:00
|
|
|
|
|
|
|
.content__inner_box.-card_box_head {
|
|
|
|
flex-direction: column-reverse;
|
2021-03-10 20:02:34 +01:00
|
|
|
margin-bottom: 0;
|
2021-03-07 16:20:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex_heading {
|
|
|
|
margin: 1.5rem 0 -1.5rem 1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-03-16 18:27:36 +01:00
|
|
|
.content__box.-card_box.-homepage {
|
2021-03-07 16:20:19 +01:00
|
|
|
margin-top: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 850px) and (min-width: 790px) {
|
2020-12-22 14:47:58 +01:00
|
|
|
:root {
|
2021-02-01 21:35:06 +01:00
|
|
|
--column-count: 2
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__bg_box {
|
|
|
|
grid-template-columns: 15% 82px auto 96px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg_box__unicorns {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__top_box .header__button {
|
|
|
|
display: auto;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__members, .primary_nav__lang_switch {
|
2020-12-22 14:47:58 +01:00
|
|
|
display: none;
|
|
|
|
}
|
2021-02-01 21:35:06 +01:00
|
|
|
|
|
|
|
.primary_nav__toggle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__navlist {
|
|
|
|
display: flex !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.secondary_nav__navlist {
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
}
|
2021-03-06 18:02:02 +01:00
|
|
|
|
|
|
|
.content__button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-03-07 16:20:19 +01:00
|
|
|
|
|
|
|
.content__inner_box.-card_box_head {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex_heading {
|
|
|
|
margin: 1.5rem 0 -1.5rem 1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-03-16 18:27:36 +01:00
|
|
|
.content__box.-card_box.-homepage {
|
2021-03-07 16:20:19 +01:00
|
|
|
margin-top: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
@media screen and (max-width: 789px) and (min-width: 596px) {
|
2020-12-22 14:47:58 +01:00
|
|
|
:root {
|
|
|
|
--column-count: 2
|
|
|
|
}
|
|
|
|
|
2021-03-07 16:20:19 +01:00
|
|
|
header {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2021-02-21 11:37:22 +01:00
|
|
|
header, .header__bg_box, .header__slim_box {
|
2020-12-22 14:47:58 +01:00
|
|
|
display: flex;
|
2021-02-01 21:35:06 +01:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2021-02-20 16:03:03 +01:00
|
|
|
.header__bg_box {
|
|
|
|
background-image: none;
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.bg_box__top_bar_left,
|
|
|
|
.bg_box__top_bar_middle,
|
|
|
|
.bg_box__top_bar_right,
|
|
|
|
.bg_box__unicorns,
|
|
|
|
.bg_box__big_bg,
|
|
|
|
.bg_box__bottom_bar_left,
|
|
|
|
.bg_box__bottom_bar_middle,
|
|
|
|
.bg_box__bottom_bar_right,
|
|
|
|
.bg_box__very_bottom_bar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-03-06 11:53:26 +01:00
|
|
|
/* slim header - start */
|
|
|
|
.header__slim_box {
|
|
|
|
background-image: none;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2021-02-21 11:37:22 +01:00
|
|
|
.slim_box__top_bar_left {
|
2021-03-06 11:53:26 +01:00
|
|
|
margin: 1rem 0.5rem 0 0;
|
2021-02-21 11:37:22 +01:00
|
|
|
height: 1.125rem;
|
2021-03-06 11:53:26 +01:00
|
|
|
background-image: url("../images/slim_header_top_triangles.svg");
|
|
|
|
background-position: right;
|
|
|
|
background-repeat: no-repeat;
|
2021-02-21 11:37:22 +01:00
|
|
|
}
|
|
|
|
|
2021-03-06 11:53:26 +01:00
|
|
|
.slim_box__top_bar_middle,
|
|
|
|
.slim_box__unicorns,
|
|
|
|
.slim_box__top_bar_right {
|
2021-02-21 11:37:22 +01:00
|
|
|
display: none;
|
|
|
|
}
|
2021-03-06 11:53:26 +01:00
|
|
|
/* slim header - end */
|
2021-02-21 11:37:22 +01:00
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__claim {
|
2021-02-20 16:03:03 +01:00
|
|
|
margin: 1.2rem 1.5rem 0 1.5rem;
|
2021-02-01 21:35:06 +01:00
|
|
|
grid-row: 3 / span 1;
|
|
|
|
grid-column: 1 / span 5;
|
2021-02-20 16:03:03 +01:00
|
|
|
background: var(--wtf-dark-blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__claim h2 span {
|
|
|
|
padding: 0 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__claim p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 1.5rem;
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-white);
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.header__sub_claim {
|
|
|
|
grid-column: 1 / span 5;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0 1.5rem 0 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub_claim__box {
|
|
|
|
padding-bottom: 2.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__top_box .header__button {
|
|
|
|
display: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.secondary_nav__navlist {
|
|
|
|
margin-right: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__navlist {
|
|
|
|
margin-right: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__members, .primary_nav__lang_switch {
|
|
|
|
display: none;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__toggle {
|
2020-12-22 14:47:58 +01:00
|
|
|
display: none;
|
|
|
|
}
|
2021-02-01 21:35:06 +01:00
|
|
|
|
|
|
|
.primary_nav__navlist {
|
|
|
|
display: flex !important;
|
|
|
|
}
|
2021-02-20 16:03:03 +01:00
|
|
|
|
2021-02-21 11:37:22 +01:00
|
|
|
.content__inner_box.-logo_header {
|
2021-02-20 16:03:03 +01:00
|
|
|
margin: -0.5rem 1.5rem 0 1.5rem;
|
|
|
|
}
|
2021-03-06 14:47:01 +01:00
|
|
|
|
|
|
|
/* homepage - start */
|
|
|
|
.content__box.-heading {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
2021-03-06 18:02:02 +01:00
|
|
|
.content__half_box, .content__third_box {
|
2021-03-06 14:47:01 +01:00
|
|
|
flex-direction: column;
|
|
|
|
padding: 0;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2021-03-06 18:02:02 +01:00
|
|
|
.content__inner_half_box, .content__inner_third_box {
|
2021-03-06 14:47:01 +01:00
|
|
|
width: auto;
|
|
|
|
margin: 0 1.5rem;
|
|
|
|
}
|
2021-03-06 18:02:02 +01:00
|
|
|
|
|
|
|
.content__button {
|
|
|
|
width: 40%;
|
2021-03-21 18:07:37 +01:00
|
|
|
margin: 0 0 0 auto;
|
2021-03-06 18:02:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.content__inner_third_heading {
|
|
|
|
margin-top: 3rem;
|
|
|
|
}
|
2021-03-07 16:20:19 +01:00
|
|
|
|
|
|
|
.content__inner_box.-card_box_head {
|
|
|
|
flex-direction: column-reverse;
|
2021-03-10 20:02:34 +01:00
|
|
|
margin-bottom: 0;
|
2021-03-07 16:20:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex_heading {
|
|
|
|
margin: 1.5rem 0 -1.5rem 1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-03-16 18:27:36 +01:00
|
|
|
.content__box.-card_box.-homepage {
|
2021-03-07 16:20:19 +01:00
|
|
|
margin-top: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
max-width: 250px;
|
|
|
|
}
|
2021-03-06 14:47:01 +01:00
|
|
|
/* homepage - end */
|
2021-04-06 18:24:25 +02:00
|
|
|
|
|
|
|
.pod_ctrl_box {
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
}
|
2021-04-10 22:13:17 +02:00
|
|
|
|
|
|
|
.content__inner_aggregate_box {
|
|
|
|
margin: 1.5rem 1rem;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
@media screen and (max-width: 595px) {
|
2020-12-22 14:47:58 +01:00
|
|
|
:root {
|
|
|
|
--column-count: 1
|
|
|
|
}
|
|
|
|
|
2021-03-21 17:56:28 +01:00
|
|
|
/* global styles - start */
|
|
|
|
h1 {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 1.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1.15rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-size: 1.05rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* global styles - start */
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__secondary_nav {
|
|
|
|
display: none;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-20 16:03:03 +01:00
|
|
|
.header__primary_nav {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__members, .primary_nav__lang_switch {
|
2020-12-22 14:47:58 +01:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2021-03-21 18:07:37 +01:00
|
|
|
header {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2021-02-21 11:37:22 +01:00
|
|
|
header, .header__bg_box, .header__slim_box {
|
2021-02-01 21:35:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2021-02-20 16:03:03 +01:00
|
|
|
.header__bg_box {
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
2021-02-21 11:37:22 +01:00
|
|
|
.header__slim_box {
|
|
|
|
margin-top: -3rem;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__claim {
|
2021-02-20 16:03:03 +01:00
|
|
|
margin: 0.5rem 0.5rem 0 0.5rem;
|
2021-02-01 21:35:06 +01:00
|
|
|
grid-row: 3 / span 1;
|
|
|
|
grid-column: 1 / span 5;
|
2021-02-20 16:03:03 +01:00
|
|
|
background: var(--wtf-dark-blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__claim h2 span {
|
|
|
|
padding: 0 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__claim p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 1.5rem;
|
|
|
|
background: var(--wtf-dark-blue);
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-white);
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.header__sub_claim {
|
|
|
|
grid-column: 1 / span 5;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0 0.5rem 0.5rem 0.5rem;
|
|
|
|
}
|
|
|
|
|
2021-03-21 17:56:28 +01:00
|
|
|
.header__claim p, .header__sub_claim p {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.header__claim h2, .header__sub_claim h2 {
|
2021-03-21 17:56:28 +01:00
|
|
|
font-size: 1.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__button, .content__button, .claim__button {
|
|
|
|
font-size: 1em;
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.bg_box__top_bar_left,
|
|
|
|
.bg_box__top_bar_middle,
|
|
|
|
.bg_box__top_bar_right,
|
|
|
|
.bg_box__unicorns,
|
|
|
|
.bg_box__big_bg,
|
|
|
|
.bg_box__bottom_bar_left,
|
|
|
|
.bg_box__bottom_bar_middle,
|
|
|
|
.bg_box__bottom_bar_right,
|
|
|
|
.bg_box__very_bottom_bar {
|
2020-12-22 14:47:58 +01:00
|
|
|
display: none;
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
2021-03-06 11:53:26 +01:00
|
|
|
/* slim header - start */
|
|
|
|
.header__slim_box {
|
|
|
|
background-image: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-02-21 11:37:22 +01:00
|
|
|
.slim_box__top_bar_left {
|
2021-03-06 11:53:26 +01:00
|
|
|
margin: 0 0.5rem 0 0;
|
2021-02-21 11:37:22 +01:00
|
|
|
height: 1.125rem;
|
2021-03-06 11:53:26 +01:00
|
|
|
background-image: url("../images/slim_header_top_triangles.svg");
|
|
|
|
background-position: right;
|
|
|
|
background-repeat: no-repeat;
|
2021-02-21 11:37:22 +01:00
|
|
|
}
|
|
|
|
|
2021-03-06 11:53:26 +01:00
|
|
|
.slim_box__top_bar_middle,
|
|
|
|
.slim_box__top_bar_right,
|
|
|
|
.slim_box__unicorns {
|
2021-02-21 11:37:22 +01:00
|
|
|
display: none;
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
2021-03-06 11:53:26 +01:00
|
|
|
/* slim header - end */
|
2021-02-01 21:35:06 +01:00
|
|
|
|
|
|
|
.sub_claim__box {
|
|
|
|
padding-bottom: 2.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mobile nav - Start */
|
|
|
|
.header__primary_nav {
|
2020-12-22 14:47:58 +01:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2021-02-01 21:35:06 +01:00
|
|
|
top: 0;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__toggle {
|
|
|
|
display: block;
|
|
|
|
margin: 2.25rem 1rem 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__navlist {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 6.5rem;
|
|
|
|
right: 0;
|
|
|
|
z-index: 30;
|
2021-03-14 18:16:00 +01:00
|
|
|
border-top: 2px solid var(--wtf-nearly-black);
|
|
|
|
border-left: 2px solid var(--wtf-nearly-black);
|
|
|
|
border-bottom: 2px solid var(--wtf-nearly-black);
|
2021-02-01 21:35:06 +01:00
|
|
|
background-color: var(--wtf-light-grey);
|
|
|
|
box-shadow: 5px 0px 15px 5px rgba(0, 0, 0, 0.25);
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__navitem {
|
2020-12-22 14:47:58 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 1rem 1rem 1rem 1.5rem;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__sub_navlist {
|
2020-12-22 14:47:58 +01:00
|
|
|
display: block;
|
2021-02-01 21:35:06 +01:00
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
margin: 0 0 0 1rem;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__navlist > li:hover > .primary_nav__sub_navlist {
|
|
|
|
margin: 0 0 0 1rem;
|
2020-12-22 14:47:58 +01:00
|
|
|
position: static;
|
2021-02-01 21:35:06 +01:00
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
2020-12-22 14:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 21:35:06 +01:00
|
|
|
.primary_nav__sub_navitem {
|
2020-12-22 14:47:58 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0.5rem 0.5rem;
|
|
|
|
list-style: none;
|
|
|
|
text-align: left;
|
|
|
|
border-top: 1px solid var(--wtf-mid-grey);
|
|
|
|
}
|
2021-02-01 21:35:06 +01:00
|
|
|
|
|
|
|
.primary_nav__sub_navitem {
|
2020-12-22 14:47:58 +01:00
|
|
|
border-top: none;
|
|
|
|
}
|
2021-02-01 21:35:06 +01:00
|
|
|
|
2021-04-11 16:08:56 +02:00
|
|
|
.primary_nav__navlink,
|
|
|
|
.primary_nav__sub_navlink {
|
2021-03-14 18:16:00 +01:00
|
|
|
color: var(--wtf-nearly-black)
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.primary_nav__navlink:hover {
|
2021-02-20 16:03:03 +01:00
|
|
|
color: var(--wtf-mid-grey);
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|
2020-12-22 14:47:58 +01:00
|
|
|
/* mobile nav - Ende */
|
2021-02-20 16:03:03 +01:00
|
|
|
|
2021-03-06 14:47:01 +01:00
|
|
|
/* homepage - start */
|
2021-03-21 18:07:37 +01:00
|
|
|
.body__separator {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-02-21 11:37:22 +01:00
|
|
|
.content__inner_box.-logo_header {
|
2021-02-20 16:03:03 +01:00
|
|
|
margin: -0.5rem 1.5rem 0 1.5rem;
|
|
|
|
}
|
2021-03-06 14:47:01 +01:00
|
|
|
|
|
|
|
.content__box.-heading {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
2021-03-06 18:02:02 +01:00
|
|
|
.content__half_box, .content__third_box {
|
2021-03-06 14:47:01 +01:00
|
|
|
flex-direction: column;
|
|
|
|
padding: 0;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2021-03-06 18:02:02 +01:00
|
|
|
.content__inner_half_box, .content__inner_third_box {
|
2021-03-06 14:47:01 +01:00
|
|
|
width: auto;
|
|
|
|
margin: 0 1.5rem;
|
|
|
|
}
|
2021-03-06 18:02:02 +01:00
|
|
|
|
|
|
|
.content__button {
|
2021-03-10 20:12:36 +01:00
|
|
|
width: auto;
|
2021-03-21 18:07:37 +01:00
|
|
|
margin: -0.5rem 0 0 auto;
|
2021-03-06 18:02:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.content__inner_third_heading {
|
2021-03-21 18:07:37 +01:00
|
|
|
margin-top: 1.5rem;
|
2021-03-06 18:02:02 +01:00
|
|
|
}
|
2021-03-07 16:20:19 +01:00
|
|
|
|
|
|
|
.content__inner_box.-card_box_head {
|
|
|
|
flex-direction: column-reverse;
|
2021-03-10 20:02:34 +01:00
|
|
|
margin-bottom: 0;
|
2021-03-07 16:20:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex_heading {
|
|
|
|
margin: 1.5rem 0 -1.5rem 1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-03-16 18:27:36 +01:00
|
|
|
.content__box.-card_box.-homepage {
|
2021-03-07 16:20:19 +01:00
|
|
|
margin-top: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
2021-03-21 17:56:28 +01:00
|
|
|
margin-top: 1.5rem;
|
2021-03-07 16:20:19 +01:00
|
|
|
max-width: 450px;
|
|
|
|
}
|
2021-03-06 14:47:01 +01:00
|
|
|
/* homepage - end */
|
2021-03-14 18:01:33 +01:00
|
|
|
|
2021-03-21 17:56:28 +01:00
|
|
|
/* content - start */
|
|
|
|
.content__teaser {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
2021-04-06 18:24:25 +02:00
|
|
|
|
|
|
|
.pod_ctrl_box {
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
}
|
2021-04-10 22:13:17 +02:00
|
|
|
|
|
|
|
.content__inner_aggregate_box {
|
|
|
|
margin: 1.5;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2021-03-21 17:56:28 +01:00
|
|
|
/* content - end */
|
|
|
|
|
2021-03-14 18:01:33 +01:00
|
|
|
/* footer - start */
|
|
|
|
footer {
|
|
|
|
grid-template-rows: 23px auto;
|
|
|
|
grid-template-columns: auto 34px 15%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer__wrapper {
|
|
|
|
padding: 6% 0%;
|
|
|
|
}
|
|
|
|
.footer__nav {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer__navitem {
|
|
|
|
margin: 1rem 0;
|
|
|
|
padding: 0;
|
|
|
|
order: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer__navitem.-second {
|
|
|
|
order: 1;
|
|
|
|
}
|
|
|
|
/* footer - end */
|
2021-02-01 21:35:06 +01:00
|
|
|
}
|