barebones/scss/_vars.scss

30 lines
750 B
SCSS
Raw Normal View History

2014-01-30 12:20:51 +01:00
// Base
2014-03-31 17:15:18 +02:00
$base-colour: #444;
$base-background-colour: #fff;
2014-01-30 12:20:51 +01:00
2014-03-31 17:15:18 +02:00
$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-05-08 12:24:17 +02:00
// Breakpoints
2014-02-03 16:33:44 +01:00
2014-05-08 12:24:17 +02:00
$breakpoint-small: 640px;
$breakpoint-medium: 768px;
$breakpoint-large: 1200px;
2014-02-03 16:33:44 +01:00
2014-06-25 10:39:26 +02:00
$breakpoints-list: (
'sd' '(max-width:' + $breakpoint-small + ')',
'md' '(min-width:' + ($breakpoint-small + 1) + ') and (max-width:' + ($breakpoint-large - 1) + ')',
'ld' '(min-width:' + $breakpoint-large + ')'
);
2014-01-30 12:20:51 +01:00
2014-06-25 10:39:26 +02:00
// Scaffolding
2014-06-20 16:59:08 +02:00
2014-06-25 10:39:26 +02:00
$max-width: 1200px;
$grid-columns: 12;
$gutter: 20px;
2014-01-30 12:20:51 +01:00
2014-06-25 10:39:26 +02:00
// Custom colours etc.