2014-02-07 00:18:00 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// VARIABLES
|
|
|
|
//
|
|
|
|
|
|
|
|
// Colors
|
2015-02-23 06:03:16 +00:00
|
|
|
$blue: #4183C4;
|
2014-02-07 00:18:00 +00:00
|
|
|
|
|
|
|
// Grays
|
|
|
|
$black: #000;
|
|
|
|
$darkerGray: #222;
|
|
|
|
$darkGray: #333;
|
|
|
|
$gray: #666;
|
2014-06-01 22:20:29 +00:00
|
|
|
$lightGray: #eee;
|
2014-02-07 00:18:00 +00:00
|
|
|
$white: #fff;
|
|
|
|
|
|
|
|
// Font stacks
|
|
|
|
$helvetica: Helvetica, Arial, sans-serif;
|
|
|
|
$helveticaNeue: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
$georgia: Georgia, serif;
|
|
|
|
|
2014-06-01 22:21:46 +00:00
|
|
|
// Mobile breakpoints
|
2014-02-07 00:18:00 +00:00
|
|
|
@mixin mobile {
|
2014-06-20 21:28:02 +00:00
|
|
|
@media screen and (max-width: 640px) {
|
2014-02-07 00:18:00 +00:00
|
|
|
@content;
|
|
|
|
}
|
2014-06-01 22:21:46 +00:00
|
|
|
}
|