30 lines
750 B
SCSS
Executable File
30 lines
750 B
SCSS
Executable File
// Base
|
|
|
|
$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-margin-bottom: ($base-font-size * $base-line-height) * 1px;
|
|
|
|
// Breakpoints
|
|
|
|
$breakpoint-small: 640px;
|
|
$breakpoint-medium: 768px;
|
|
$breakpoint-large: 1200px;
|
|
|
|
$breakpoints-list: (
|
|
'sd' '(max-width:' + $breakpoint-small + ')',
|
|
'md' '(min-width:' + ($breakpoint-small + 1) + ') and (max-width:' + ($breakpoint-large - 1) + ')',
|
|
'ld' '(min-width:' + $breakpoint-large + ')'
|
|
);
|
|
|
|
// Scaffolding
|
|
|
|
$max-width: 1200px;
|
|
$grid-columns: 12;
|
|
$gutter: 20px;
|
|
|
|
// Custom colours etc.
|