2014-09-23 12:31:49 +02:00
|
|
|
/**
|
2015-10-15 18:24:32 +02:00
|
|
|
* Colours
|
2014-08-08 12:38:12 +02:00
|
|
|
*/
|
2014-01-30 12:20:51 +01:00
|
|
|
|
2014-03-31 17:15:18 +02:00
|
|
|
$base-colour: #444;
|
|
|
|
$base-background-colour: #fff;
|
2015-10-15 18:24:32 +02:00
|
|
|
|
|
|
|
$brand-colour: #444; // Example
|
|
|
|
$success-colour: #5CB85C;
|
|
|
|
$info-colour: $brand-colour;
|
|
|
|
$warning-colour: #F0AD4E;
|
|
|
|
$danger-colour: #D9534F;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Typography
|
|
|
|
*/
|
|
|
|
|
|
|
|
$sans-serif-font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
|
|
$serif-font-family: Georgia, "Times New Roman", Times, serif;
|
|
|
|
$base-font-family: $sans-serif-font-family;
|
|
|
|
|
|
|
|
$base-font-size: 16;
|
|
|
|
$base-line-height: 1.5;
|
|
|
|
$base-spacing-unit: ($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
|
|
|
|
*/
|
|
|
|
|
2015-03-06 18:05:05 +01:00
|
|
|
$breakpoint-lg: 1200px;
|
2016-12-15 13:42:14 +01:00
|
|
|
$breakpoint-md: 768px;
|
|
|
|
$breakpoint-sm: 480px;
|
2015-03-06 17:40:55 +01:00
|
|
|
|
|
|
|
$breakpoints: (
|
2015-10-14 12:25:52 +02:00
|
|
|
'lg' '(min-width: ' + $breakpoint-lg + ')',
|
|
|
|
'md' '(min-width: ' + $breakpoint-md + ') and (max-width: ' + ($breakpoint-lg - 1) + ')',
|
2016-12-15 13:42:14 +01:00
|
|
|
'sm' '(max-width:' + ($breakpoint-md - 1) + ')',
|
2015-10-14 12:25:52 +02:00
|
|
|
'xs' '(max-width: ' + $breakpoint-sm + ')'
|
2015-03-06 17:40:55 +01: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-12-01 13:19:26 +01:00
|
|
|
* Grid
|
2014-08-08 12:38:12 +02:00
|
|
|
*/
|
|
|
|
|
2015-10-14 12:25:52 +02:00
|
|
|
$grid-max-width: 1200px;
|
|
|
|
$grid-columns: 12;
|
|
|
|
$grid-gutter: $base-spacing-unit;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-10-15 18:24:32 +02:00
|
|
|
* Components
|
2015-10-14 12:25:52 +02:00
|
|
|
*/
|
|
|
|
|
2016-12-15 13:42:14 +01:00
|
|
|
$border-radius: 3px;
|
2017-08-25 18:11:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Animations
|
|
|
|
*/
|
|
|
|
$animation-speed: 250ms;
|
|
|
|
$animation: ease-in-out;
|