barebones/scss/_vars.scss

40 lines
697 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;
$base-margin-bottom: ($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
*/
$breakpoint-sd: 640px;
$breakpoint-md: 768px;
$breakpoint-ld: 1200px;
2014-02-03 16:33:44 +01:00
2014-06-25 10:39:26 +02:00
$breakpoints-list: (
2014-09-11 15:58:26 +02:00
'ld' null,
2014-09-23 12:31:49 +02:00
'md' '(min-width:' + ($breakpoint-sd + 1) + ') and (max-width:' + ($breakpoint-ld - 1) + ')',
'sd' '(max-width:' + $breakpoint-sd + ')'
2014-06-25 10:39:26 +02: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-08-08 12:38:12 +02:00
* Scaffolding
*/
$max-width: 1200px;
$grid-columns: 12;
2014-09-23 12:31:49 +02:00
$gutter: $base-margin-bottom;
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
*/