1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00
Files
locomotive-boilerplate/assets/styles/settings/_config.scss

46 lines
1.3 KiB
SCSS
Raw Normal View History

// ==========================================================================
// Settings / Config
// ==========================================================================
// Context
// =============================================================================
2022-05-12 16:15:44 +02: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;
// Typography
// =============================================================================
2022-05-12 16:15:44 +02:00
// Base
2023-06-08 11:48:00 +02:00
$font-size: 16px;
$line-height: math.div(24px, $font-size);
$font-color: colorCode(darkest);
2022-05-12 16:15:44 +02: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;
// Transition defaults
// =============================================================================
2023-06-08 11:48:00 +02:00
$speed: t(normal);
$easing: ease("power2.out");
// Spacing Units
// =============================================================================
$unit: 60px;
$unit-small: 20px;
$vw-viewport: 1440;
// Container
// ==========================================================================
$padding: $unit;
2022-03-24 17:54:53 -04:00
// Grid
// ==========================================================================
$base-column-nb: 12;