mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
22 lines
402 B
SCSS
22 lines
402 B
SCSS
//
|
|
// Site Variables
|
|
//
|
|
|
|
// Breakpoints
|
|
$nav-desktop-min: 768px;
|
|
$nav-mobile-max: ($nav-desktop-min - 1px);
|
|
|
|
// Sizes
|
|
$nav-height-desktop: pxrem(60);
|
|
$nav-height-mobile: pxrem(50);
|
|
$nav-link-height-mobile: pxrem(50);
|
|
|
|
// 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;
|