41 lines
826 B
SCSS
Executable File
41 lines
826 B
SCSS
Executable File
/**
|
|
* Custom variables
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
* Base values
|
|
*/
|
|
|
|
$base-colour: #444;
|
|
$base-background-colour: #fff;
|
|
$base-font-stack: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
$base-font-size: 16;
|
|
$base-line-height: 1.5;
|
|
$base-spacing-unit: ($base-font-size * $base-line-height) * 1px;
|
|
|
|
|
|
/**
|
|
* Breakpoints
|
|
*/
|
|
|
|
$breakpoint-sm: 768px;
|
|
$breakpoint-md: 992px;
|
|
$breakpoint-lg: 1200px;
|
|
|
|
$breakpoints: (
|
|
'lg' '(min-width: ' + $breakpoint-lg + ')',
|
|
'md' '(min-width: ' + $breakpoint-md + ') and (max-width: ' + ($breakpoint-lg - 1) + ')',
|
|
'sm' '(min-width: ' + $breakpoint-sm + ') and (max-width:' + ($breakpoint-md - 1) + ')',
|
|
'xs' '(max-width: ' + ($breakpoint-sm - 1) + ')'
|
|
);
|
|
|
|
|
|
/**
|
|
* Grid
|
|
*/
|
|
|
|
$grid-max-width: 1200px;
|
|
$grid-columns: 12;
|
|
$grid-gutter: $base-spacing-unit; |