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
|
|
|
|
|
// =============================================================================
|
|
|
|
|
// 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
|
|
|
// Typefaces
|
|
|
|
|
// =============================================================================
|
2022-04-29 13:51:46 +02:00
|
|
|
|
|
|
|
|
$font-dir: "../fonts/";
|
|
|
|
|
|
|
|
|
|
$font-families: (
|
|
|
|
|
"sans": ("Webfont Sans", "Helvetica Neue", Arial, sans-serif),
|
|
|
|
|
// "serif": ("Webfont Serif", Georgia, serif)
|
|
|
|
|
);
|
|
|
|
|
|
2022-05-02 10:30:35 +02:00
|
|
|
$font-faces: (
|
2022-04-29 13:51:46 +02:00
|
|
|
// "Webfont Sans" "webfont-sans_regular" 400 normal,
|
|
|
|
|
// "Webfont Sans" "webfont-sans_regular-italic" 400 italic,
|
|
|
|
|
// "Webfont Serif" "webfont-sans_bold" 700 normal,
|
|
|
|
|
);
|
2016-12-18 15:45:44 -05:00
|
|
|
|
|
|
|
|
// Typography
|
|
|
|
|
// =============================================================================
|
2017-02-08 11:43:28 -05:00
|
|
|
// Base
|
2017-04-27 16:00:45 -04:00
|
|
|
$font-size: 16px;
|
2017-02-08 11:43:28 -05:00
|
|
|
$line-height: 24px / $font-size;
|
2017-04-27 16:00:45 -04:00
|
|
|
$color: #222222;
|
2017-02-08 11:43:28 -05:00
|
|
|
// Headings
|
|
|
|
|
$font-size-h1: 36px !default;
|
|
|
|
|
$font-size-h2: 28px !default;
|
|
|
|
|
$font-size-h3: 24px !default;
|
|
|
|
|
$font-size-h4: 20px !default;
|
|
|
|
|
$font-size-h5: 18px !default;
|
|
|
|
|
$font-size-h6: 16px !default;
|
|
|
|
|
$line-height-h: $line-height;
|
|
|
|
|
// Weights
|
2017-04-27 16:00:45 -04:00
|
|
|
$light: 300;
|
2017-02-08 11:43:28 -05:00
|
|
|
$normal: 400;
|
|
|
|
|
$medium: 500;
|
2017-04-27 16:00:45 -04:00
|
|
|
$bold: 700;
|
2017-02-08 11:43:28 -05:00
|
|
|
|
|
|
|
|
// Transitions
|
2016-12-18 15:45:44 -05:00
|
|
|
// =============================================================================
|
2017-04-27 16:00:45 -04:00
|
|
|
$speed: 0.3s;
|
2021-05-06 17:04:27 -04:00
|
|
|
$easing: $Power2EaseOut;
|
2016-12-18 15:45:44 -05:00
|
|
|
|
2017-02-08 11:43:28 -05:00
|
|
|
// Spacing Units
|
|
|
|
|
// =============================================================================
|
2017-04-27 16:00:45 -04:00
|
|
|
$unit: 60px;
|
2017-02-08 11:43:28 -05:00
|
|
|
$unit-small: 30px;
|
2016-12-18 15:45:44 -05:00
|
|
|
|
2017-02-08 11:43:28 -05:00
|
|
|
// Container
|
|
|
|
|
// ==========================================================================
|
|
|
|
|
$container-width: 2000px;
|
2017-04-27 16:00:45 -04:00
|
|
|
$padding: $unit;
|
2016-12-18 15:45:44 -05:00
|
|
|
|
|
|
|
|
// Breakpoints
|
|
|
|
|
// =============================================================================
|
2018-03-28 10:17:20 -04:00
|
|
|
$from-tiny: 500px !default;
|
|
|
|
|
$to-tiny: $from-tiny - 1 !default;
|
|
|
|
|
$from-small: 700px !default;
|
|
|
|
|
$to-small: $from-small - 1 !default;
|
|
|
|
|
$from-medium: 1000px !default;
|
|
|
|
|
$to-medium: $from-medium - 1 !default;
|
|
|
|
|
$from-large: 1200px !default;
|
|
|
|
|
$to-large: $from-large - 1 !default;
|
|
|
|
|
$from-big: 1400px !default;
|
|
|
|
|
$to-big: $from-big - 1 !default;
|
|
|
|
|
$from-huge: 1600px !default;
|
|
|
|
|
$to-huge: $from-huge - 1 !default;
|
|
|
|
|
$from-enormous: 1800px !default;
|
|
|
|
|
$to-enormous: $from-enormous - 1 !default;
|
|
|
|
|
$from-gigantic: 2000px !default;
|
|
|
|
|
$to-gigantic: $from-gigantic - 1 !default;
|
|
|
|
|
$from-colossal: 2400px !default;
|
|
|
|
|
$to-colossal: $from-colossal - 1 !default;
|