barebones/scss/_vars.scss

40 lines
730 B
SCSS
Raw Normal View History

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-03-06 17:40:55 +01:00
$breakpoint-sd: 768px;
$breakpoint-md: 992px;
$breakpoint-ld: 1200px;
$breakpoints: (
'ld' '(min-width:' + $breakpoint-ld + ')',
'md' '(min-width:' + $breakpoint-sd + ') and (max-width:' + ($breakpoint-md - 1) + ')',
'sd' '(max-width:' + ($breakpoint-sd - 1) + ')'
);
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
*/
2014-12-01 13:19:26 +01:00
$grid-max-width: 1200px;
$grid-grid-columns: 12;
2014-12-01 13:26:25 +01:00
$grid-gutter: $base-spacing-unit;
2014-08-08 12:38:12 +02:00
2014-01-30 12:20:51 +01:00
2014-09-23 12:31:49 +02:00
/**
2014-08-08 12:38:12 +02:00
* Custom variables
*/