22 lines
459 B
SCSS
22 lines
459 B
SCSS
|
// Variables
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
// Layout
|
||
|
$sLayout-width-xl: 1000px;
|
||
|
$sLayout-width-l: 960px;
|
||
|
$sLayout-width-m: 750px;
|
||
|
$sLayout-width-s: 400px;
|
||
|
|
||
|
// Font
|
||
|
$font-weight-base: 300;
|
||
|
$font-size-base: 15px;
|
||
|
$line-height-base: 25px;
|
||
|
$font-family-base: 'ProximaNova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||
|
$text-color: #666;
|
||
|
$body-background: #FFF;
|
||
|
|
||
|
// Colors
|
||
|
$cPrincipal: #397DBA;
|
||
|
$cSecondary: #2B6191;
|
||
|
$cError: #DD4B39;
|