36 lines
801 B
SCSS
36 lines
801 B
SCSS
@charset "utf-8";
|
|
|
|
// Define defaults for each variable.
|
|
|
|
$base-font-family: 'Noto Sans', Helvetica, Arial, sans-serif;
|
|
$base-font-size: 16px !default;
|
|
$base-font-weight: 400 !default;
|
|
$big-font-weight: 700 !default;
|
|
$small-font-size: $base-font-size * 0.875 !default;
|
|
$base-line-height: 1.5 !default;
|
|
|
|
$spacing-unit: 30px !default;
|
|
|
|
$text-color: #0d3547 !default;
|
|
$background-color: #fff !default;
|
|
$brand-color: #715ec7 !default;
|
|
|
|
$color-primary: #0d3547 !default;
|
|
$color-secondary: #1a6d93 !default;
|
|
|
|
$btn-primary-2: #715ec7 !default;
|
|
$btn-secondary-2: #a88cfd !default;
|
|
|
|
$link-primary-dark: #c2affd !default;
|
|
$link-secondary-dark: #cec2ea !default;
|
|
|
|
$color-hover: #eae7f7 !default;
|
|
|
|
// Import partials.
|
|
@import
|
|
"_base",
|
|
"_layout",
|
|
"_shop",
|
|
"slideshow"
|
|
;
|