2017-03-14 03:55:34 +00:00
|
|
|
$default-color: #555;
|
2017-03-11 05:09:18 +00:00
|
|
|
$default-shade: #353535;
|
2017-03-14 03:55:34 +00:00
|
|
|
$default-tint: #aaa;
|
|
|
|
$grey-1: #979797;
|
|
|
|
$grey-2: #e5e5e5;
|
|
|
|
$grey-3: #f9f9f9;
|
2017-03-21 04:49:35 +00:00
|
|
|
$white: #fff;
|
2017-03-14 03:55:34 +00:00
|
|
|
$blue: #4a9ae1;
|
2017-03-11 05:09:18 +00:00
|
|
|
|
2017-03-21 04:49:35 +00:00
|
|
|
$baskerville: 'Libre Baskerville', 'Times New Roman', Times, serif;
|
|
|
|
$palatino: Palatino, 'Palatino LT STD', 'Palatino Linotype', 'Book Antiqua', 'Georgia', serif;
|
2017-03-16 03:05:38 +00:00
|
|
|
$sans-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
2017-03-15 03:58:11 +00:00
|
|
|
$default-font-size: 16px;
|
2017-03-11 05:09:18 +00:00
|
|
|
|
2017-03-16 03:22:39 +00:00
|
|
|
$monospaced-font: Menlo, Monaco, monospace;
|
2017-03-14 03:55:34 +00:00
|
|
|
$code-color: #bf616a;
|
|
|
|
|
2017-03-11 05:09:18 +00:00
|
|
|
@mixin box-sizing($type: border-box) {
|
|
|
|
-webkit-box-sizing: $type;
|
|
|
|
-moz-box-sizing: $type;
|
|
|
|
box-sizing: $type;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin transition($args...) {
|
|
|
|
-webkit-transition: $args;
|
|
|
|
-moz-transition: $args;
|
|
|
|
transition: $args;
|
|
|
|
}
|