mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
45 lines
1.3 KiB
SCSS
45 lines
1.3 KiB
SCSS
// ==========================================================================
|
|
// Settings / Config
|
|
// ==========================================================================
|
|
|
|
// Context
|
|
// =============================================================================
|
|
|
|
// The current stylesheet context. Available values: frontend, editor.
|
|
$context: frontend !default;
|
|
|
|
// Path is relative to the stylesheets directory.
|
|
$assets-path: "../" !default;
|
|
|
|
// Typography
|
|
// =============================================================================
|
|
|
|
// Base
|
|
$font-size: 16px;
|
|
$line-height: math.div(24px, $font-size);
|
|
$font-color: color(darkest);
|
|
|
|
// Weights
|
|
$font-weight-light: 300;
|
|
$font-weight-normal: 400;
|
|
$font-weight-medium: 500;
|
|
$font-weight-bold: 700;
|
|
|
|
// Transition defaults
|
|
// =============================================================================
|
|
$speed: t(normal);
|
|
$easing: ease("power2.out");
|
|
|
|
// Spacing Units
|
|
// =============================================================================
|
|
$unit: 60px;
|
|
$unit-small: 20px;
|
|
|
|
// Container
|
|
// ==========================================================================
|
|
$padding: $unit;
|
|
|
|
// Grid
|
|
// ==========================================================================
|
|
$base-column-nb: 12;
|