2022-06-17 17:51:59 +02:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// VARIABLES
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
2022-09-09 15:26:04 +02:00
|
|
|
// Fonts
|
|
|
|
|
2022-12-20 11:43:50 +01:00
|
|
|
--text-font-family: Helvetica, Arial, sans-serif;
|
2022-09-09 15:26:04 +02:00
|
|
|
--regular-font-weight: 400;
|
|
|
|
--medium-font-weight: 500;
|
|
|
|
--semi-bold-font-weight: 600;
|
|
|
|
--bold-font-weight: 700;
|
2022-12-20 12:13:49 +01:00
|
|
|
--text-font-size: 1rem;
|
2022-12-21 17:21:58 +01:00
|
|
|
--text-line-height: 1.1;
|
2022-09-09 15:26:04 +02:00
|
|
|
|
|
|
|
// Dimensions
|
|
|
|
|
2022-12-21 14:14:32 +01:00
|
|
|
--icon-size: 3rem;
|
2022-09-27 16:42:28 +02:00
|
|
|
--sidebar-padding: 0.8rem;
|
2022-09-09 15:26:04 +02:00
|
|
|
|
|
|
|
// Colors
|
|
|
|
|
|
|
|
--black: #000;
|
|
|
|
--white: #fff;
|
2022-06-17 17:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Media queries
|
|
|
|
|
|
|
|
$tablet-media-query: 48rem;
|
|
|
|
$desktop-media-query: 62rem;
|
2022-12-20 12:13:49 +01:00
|
|
|
|
|
|
|
@media screen and (min-width: $tablet-media-query) {
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
|
|
|
// Fonts
|
|
|
|
|
|
|
|
--text-font-size: 0.95rem;
|
|
|
|
|
|
|
|
// Dimensions
|
|
|
|
|
2022-12-21 14:14:32 +01:00
|
|
|
--icon-size: 2.8rem;
|
2022-12-20 12:13:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: $desktop-media-query) {
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
|
|
|
// Fonts
|
|
|
|
|
|
|
|
--text-font-size: 0.9rem;
|
|
|
|
|
|
|
|
// Dimensions
|
|
|
|
|
2022-12-21 14:14:32 +01:00
|
|
|
--icon-size: 2.6rem;
|
2022-12-20 12:13:49 +01:00
|
|
|
}
|
|
|
|
}
|