Change comment style and shorten vars

This commit is contained in:
Mike Francis 2014-08-08 11:38:12 +01:00
parent 85be4a104f
commit a0bcc1691f
1 changed files with 24 additions and 14 deletions

View File

@ -1,29 +1,39 @@
// Base /*
* Base values
*/
$base-colour: #444; $base-colour: #444;
$base-background-colour: #fff; $base-background-colour: #fff;
$base-font-stack: 'Helvetica Neue', Helvetica, Arial, sans-serif; $base-font-stack: 'Helvetica Neue', Helvetica, Arial, sans-serif;
$base-font-size: 16; $base-font-size: 16;
$base-line-height: 1.5; $base-line-height: 1.5;
$base-margin-bottom: ($base-font-size * $base-line-height) * 1px; $base-margin-bottom: ($base-font-size * $base-line-height) * 1px;
// Breakpoints
$breakpoint-small: 640px; /*
$breakpoint-medium: 768px; * Breakpoints
$breakpoint-large: 1200px; */
$breakpoint-sd: 640px;
$breakpoint-md: 768px;
$breakpoint-ld: 1200px;
$breakpoints-list: ( $breakpoints-list: (
'sd' '(max-width:' + $breakpoint-small + ')', 'sd' '(max-width:' + $breakpoint-sm + ')',
'md' '(min-width:' + ($breakpoint-small + 1) + ') and (max-width:' + ($breakpoint-large - 1) + ')', 'md' '(min-width:' + ($breakpoint-md + 1) + ') and (max-width:' + ($breakpoint-ld - 1) + ')',
'ld' '(min-width:' + $breakpoint-large + ')' 'ld' '(min-width:' + $breakpoint-ld + ')'
); );
// Scaffolding
$max-width: 1200px; /*
$grid-columns: 12; * Scaffolding
$gutter: 20px; */
// Custom colours etc. $max-width: 1200px;
$grid-columns: 12;
$gutter: 20px;
/*
* Custom variables
*/