Move into assets folder

This commit is contained in:
Mike Francis 2015-04-01 17:32:10 +01:00
parent 990f7015b4
commit 530c1b54d6
19 changed files with 342 additions and 266 deletions

41
assets/scss/_defaults.scss Executable file
View file

@ -0,0 +1,41 @@
/**
* Custom variables
*/
/**
* 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-spacing-unit: ($base-font-size * $base-line-height) * 1px;
/**
* Breakpoints
*/
$breakpoint-sm: 768px;
$breakpoint-md: 992px;
$breakpoint-lg: 1200px;
$breakpoints: (
'lg' '(min-width: ' + $breakpoint-lg + ')',
'md' '(min-width: ' + $breakpoint-md + ') and (max-width: ' + ($breakpoint-lg - 1) + ')',
'sm' '(min-width: ' + $breakpoint-sm + ') and (max-width:' + ($breakpoint-md - 1) + ')',
'xs' '(max-width: ' + ($breakpoint-sm - 1) + ')'
);
/**
* Grid
*/
$grid-max-width: 1200px;
$grid-columns: 12;
$grid-gutter: $base-spacing-unit;