mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
45 lines
743 B
SCSS
Vendored
45 lines
743 B
SCSS
Vendored
//
|
|
// Custom Variables
|
|
//
|
|
|
|
// Overrides
|
|
$grid-breakpoints: (
|
|
xs: 0px,
|
|
sm: 576px,
|
|
md: 768px,
|
|
lg: 992px,
|
|
xl: 1200px,
|
|
xxl: 1600px,
|
|
xxxl: 1950px,
|
|
xxxxl: 2150px
|
|
);
|
|
|
|
$container-max-widths: (
|
|
sm: 540px,
|
|
md: 720px,
|
|
lg: 960px,
|
|
xl: 1140px,
|
|
xxl: 1540px,
|
|
xxxl: 1733px,
|
|
xxxxl: 1925px
|
|
);
|
|
|
|
// Colours
|
|
$c-text: #111; // text
|
|
$c-text-light: #fff; // light text
|
|
$c-base: #2e2e2e; // base
|
|
$c-accent: #fa7921; // accent
|
|
$c-error: #fa2036; // error
|
|
|
|
// Values
|
|
$nav-link-count: 3;
|
|
|
|
// Sizes
|
|
$nav-height-desktop: pxrem(60);
|
|
$nav-height-mobile: pxrem(50);
|
|
$nav-link-height-mobile: pxrem(50);
|
|
$grid-gutter-width: pxrem(30);
|
|
|
|
// Breakpoints
|
|
$nav-desktop-min: 768px;
|
|
$nav-mobile-max: ($nav-desktop-min - 1px);
|