2017-02-08 11:43:28 -05:00
|
|
|
// ==========================================================================
|
|
|
|
|
// Settings / Config
|
|
|
|
|
// ==========================================================================
|
2016-12-18 15:45:44 -05:00
|
|
|
|
2017-02-08 12:08:34 -05:00
|
|
|
// Context
|
|
|
|
|
// =============================================================================
|
2022-05-12 16:15:44 +02:00
|
|
|
|
2017-02-08 12:08:34 -05:00
|
|
|
// The current stylesheet context. Available values: frontend, editor.
|
|
|
|
|
$context: frontend !default;
|
|
|
|
|
|
|
|
|
|
// Path is relative to the stylesheets directory.
|
2017-04-27 16:00:45 -04:00
|
|
|
$assets-path: "../" !default;
|
2017-02-08 12:08:34 -05:00
|
|
|
|
2016-12-18 15:45:44 -05:00
|
|
|
// Typography
|
|
|
|
|
// =============================================================================
|
2022-05-12 16:15:44 +02:00
|
|
|
|
2017-02-08 11:43:28 -05:00
|
|
|
// Base
|
2023-06-08 11:48:00 +02:00
|
|
|
$font-size: 16px;
|
2023-01-31 13:57:51 -05:00
|
|
|
$line-height: math.div(24px, $font-size);
|
2023-04-19 15:37:52 +02:00
|
|
|
$font-color: color(darkest);
|
2022-05-12 16:15:44 +02:00
|
|
|
|
2017-02-08 11:43:28 -05:00
|
|
|
// Weights
|
2022-05-25 13:47:45 +02:00
|
|
|
$font-weight-light: 300;
|
|
|
|
|
$font-weight-normal: 400;
|
|
|
|
|
$font-weight-medium: 500;
|
|
|
|
|
$font-weight-bold: 700;
|
2017-02-08 11:43:28 -05:00
|
|
|
|
2023-09-05 09:31:56 +02:00
|
|
|
// Transition defaults
|
2016-12-18 15:45:44 -05:00
|
|
|
// =============================================================================
|
2023-06-08 11:48:00 +02:00
|
|
|
$speed: t(normal);
|
2023-09-05 09:31:56 +02:00
|
|
|
$easing: ease("power2.out");
|
2016-12-18 15:45:44 -05:00
|
|
|
|
2017-02-08 11:43:28 -05:00
|
|
|
// Spacing Units
|
|
|
|
|
// =============================================================================
|
2024-03-26 11:41:23 -04:00
|
|
|
$unit: 60px;
|
|
|
|
|
$unit-small: 20px;
|
|
|
|
|
$vw-viewport: 1440;
|
2016-12-18 15:45:44 -05:00
|
|
|
|
2017-02-08 11:43:28 -05:00
|
|
|
// Container
|
2022-04-28 15:36:56 -04:00
|
|
|
// ==========================================================================
|
2024-03-26 11:41:23 -04:00
|
|
|
$padding: $unit;
|
2016-12-18 15:45:44 -05:00
|
|
|
|
2022-03-24 17:54:53 -04:00
|
|
|
// Grid
|
|
|
|
|
// ==========================================================================
|
|
|
|
|
$base-column-nb: 12;
|