2014-09-23 12:31:49 +02:00
|
|
|
/**
|
2014-08-08 12:38:12 +02:00
|
|
|
* Base values
|
|
|
|
*/
|
2014-01-30 12:20:51 +01:00
|
|
|
|
2014-03-31 17:15:18 +02:00
|
|
|
$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;
|
2014-12-01 13:26:25 +01:00
|
|
|
$base-spacing-unit: ($base-font-size * $base-line-height) * 1px;
|
2014-01-30 12:20:51 +01:00
|
|
|
|
2014-02-03 16:33:44 +01:00
|
|
|
|
2014-09-23 12:31:49 +02:00
|
|
|
/**
|
2014-08-08 12:38:12 +02:00
|
|
|
* Breakpoints
|
|
|
|
*/
|
|
|
|
|
2015-06-15 17:25:09 +02:00
|
|
|
$breakpoint-sm: 767px;
|
2015-03-06 17:40:55 +01:00
|
|
|
$breakpoint-md: 992px;
|
2015-03-06 18:05:05 +01:00
|
|
|
$breakpoint-lg: 1200px;
|
2015-03-06 17:40:55 +01:00
|
|
|
|
|
|
|
$breakpoints: (
|
2015-10-14 12:25:52 +02:00
|
|
|
'lg' '(min-width: ' + $breakpoint-lg + ')',
|
|
|
|
'md' '(min-width: ' + $breakpoint-md + ') and (max-width: ' + ($breakpoint-lg - 1) + ')',
|
|
|
|
'sm' '(min-width: ' + ($breakpoint-sm + 1) + ') and (max-width:' + ($breakpoint-md - 1) + ')',
|
|
|
|
'xs' '(max-width: ' + $breakpoint-sm + ')'
|
2015-03-06 17:40:55 +01:00
|
|
|
);
|
2014-01-30 12:20:51 +01:00
|
|
|
|
2014-06-20 16:59:08 +02:00
|
|
|
|
2014-09-23 12:31:49 +02:00
|
|
|
/**
|
2014-12-01 13:19:26 +01:00
|
|
|
* Grid
|
2014-08-08 12:38:12 +02:00
|
|
|
*/
|
|
|
|
|
2015-10-14 12:25:52 +02:00
|
|
|
$grid-max-width: 1200px;
|
|
|
|
$grid-columns: 12;
|
|
|
|
$grid-gutter: $base-spacing-unit;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom variables
|
|
|
|
*/
|
|
|
|
|
|
|
|
$brand-colour: #444; // Example
|