2025-05-23 17:17:38 +02:00
|
|
|
// --------------------------------------------------
|
2022-06-17 17:51:59 +02:00
|
|
|
// VARIABLES
|
2025-05-23 17:17:38 +02:00
|
|
|
// --------------------------------------------------
|
2022-06-17 17:51:59 +02:00
|
|
|
|
2025-05-24 12:40:09 +02:00
|
|
|
// Fonts
|
|
|
|
$text-font-family: Helvetica, Arial, sans-serif;
|
2025-05-25 18:29:02 +02:00
|
|
|
$text-font-size: 0.9rem;
|
|
|
|
$text-line-height: 1.15;
|
2025-05-24 12:40:09 +02:00
|
|
|
|
|
|
|
// Dimensions
|
2025-05-25 18:29:02 +02:00
|
|
|
$app-width: min(100%, 120rem); // => 1920px
|
|
|
|
$large-content-width: min(100%, 100rem); // => 1600px
|
|
|
|
$medium-content-width: min(100%, 80rem); // => 1280px
|
|
|
|
$small-content-width: min(100%, 60rem); // => 960px
|
|
|
|
$icon-size: clamp(2rem, 1.667rem + 0.694vw, 2.5rem); // Viewport range: 48rem <=> 120rem
|
|
|
|
$icon-spacing: clamp(0.25rem, 0.083rem + 0.347vw, 0.5rem); // Viewport range: 48rem <=> 120rem
|
2025-05-24 12:40:09 +02:00
|
|
|
|
|
|
|
// Colors
|
|
|
|
$black: #000;
|
|
|
|
$white: #fff;
|
2022-06-17 17:51:59 +02:00
|
|
|
|
|
|
|
// Media queries
|
2025-05-25 18:29:02 +02:00
|
|
|
$tablet-media-query: 48rem; // => 768px
|
|
|
|
$desktop-media-query: 62rem; // => 992px
|