You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
427 B
20 lines
427 B
/** Colors */ |
|
$brand-primary: #b01109; |
|
$brand-secondary: #015d75; |
|
$dark-grey: #444; |
|
$black: #000; |
|
$white: #fff; |
|
|
|
/** Box Model */ |
|
$spacer: 2rem; |
|
|
|
/** Breakpoints */ |
|
$small: 768px; |
|
$medium: 960px; |
|
$large: 1200px; |
|
$extra-large: 1650px; |
|
|
|
/** Fonts */ |
|
$font-family-sans-serif: 'Karla', sans-serif; |
|
$font-family-serif: 'Spectral', serif; |
|
$base-font-size: 18;
|
|
|