/* * Base values */ $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-sd: 640px; $breakpoint-md: 768px; $breakpoint-ld: 1200px; $breakpoints-list: ( 'ld' null, 'md' '(min-width:' + ($small-device + 1) + ') and (max-width:' + ($large-device - 1) + ')', 'sd' '(max-width:' + $small-device + ')' ); /* * Scaffolding */ $max-width: 1200px; $grid-columns: 12; $gutter: 20px; /* * Custom variables */