2022-06-17 17:51:59 +02:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// VARIABLES
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
2022-07-07 17:09:48 +02:00
|
|
|
// Fonts
|
|
|
|
|
2022-07-19 17:28:33 +02:00
|
|
|
--text-font-family: Helvetica, sans-serif;
|
|
|
|
--title-font-family: Helvetica, sans-serif;
|
2022-07-07 17:09:48 +02:00
|
|
|
--regular-font-weight: 400;
|
|
|
|
--medium-font-weight: 500;
|
|
|
|
--semi-bold-font-weight: 600;
|
|
|
|
--bold-font-weight: 700;
|
2022-08-05 17:14:28 +02:00
|
|
|
--text-font-size: 1rem;
|
2022-07-19 17:28:33 +02:00
|
|
|
--text-line-height: calc(var(--text-font-size) * 1.2);
|
2022-08-05 17:14:28 +02:00
|
|
|
--footnote-font-size: 0.8rem;
|
2022-07-19 17:28:33 +02:00
|
|
|
--footnote-line-height: calc(var(--footnote-font-size) * 1.2);
|
2022-07-07 17:09:48 +02:00
|
|
|
--h1-font-size: 1.6rem;
|
2022-07-19 17:28:33 +02:00
|
|
|
--h1-line-height: calc(var(--h1-font-size) * 1.2);
|
2022-08-05 17:14:28 +02:00
|
|
|
--h2-font-size: 1.4rem;
|
2022-07-19 17:28:33 +02:00
|
|
|
--h2-line-height: calc(var(--h2-font-size) * 1.2);
|
2022-08-05 17:14:28 +02:00
|
|
|
--h3-font-size: 1.2rem;
|
2022-07-19 17:28:33 +02:00
|
|
|
--h3-line-height: calc(var(--h3-font-size) * 1.2);
|
2022-07-07 17:09:48 +02:00
|
|
|
|
|
|
|
// Dimensions
|
|
|
|
|
2022-08-05 17:14:28 +02:00
|
|
|
--logo-width: 6rem;
|
|
|
|
--logo-height: 3rem;
|
2022-08-08 12:40:16 +02:00
|
|
|
--logo-padding: 1rem;
|
2022-08-05 17:14:28 +02:00
|
|
|
--icon-size: 2.25rem;
|
2022-08-08 12:40:16 +02:00
|
|
|
--sidebar-padding: 1rem;
|
2022-07-07 17:09:48 +02:00
|
|
|
|
|
|
|
// Colors
|
|
|
|
|
|
|
|
--black: #000;
|
2022-07-28 18:59:14 +02:00
|
|
|
--transparent-black: rgba(0, 0, 0, 0.3);
|
2022-07-07 17:09:48 +02:00
|
|
|
--white: #fff;
|
|
|
|
--transparent-white: rgba(255, 255, 255, 0.9);
|
|
|
|
--feldgrau: #4B6259;
|
2022-08-01 16:59:46 +02:00
|
|
|
--transparent-feldgrau: rgba(75, 98, 89, 0.9);
|
2022-06-17 17:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Media queries
|
|
|
|
|
|
|
|
$tablet-media-query: 48rem;
|
|
|
|
$desktop-media-query: 62rem;
|