Fork files from barryclark/jekyll-now.

This commit is contained in:
mattbk
2017-03-09 12:28:34 -06:00
parent aa621b983f
commit 15002dc406
24 changed files with 698 additions and 0 deletions

27
_sass/_variables.scss Normal file
View File

@ -0,0 +1,27 @@
//
// VARIABLES
//
// Colors
$blue: #4183C4;
// Grays
$black: #000;
$darkerGray: #222;
$darkGray: #333;
$gray: #666;
$lightGray: #eee;
$white: #fff;
// Font stacks
$helvetica: Helvetica, Arial, sans-serif;
$helveticaNeue: "Helvetica Neue", Helvetica, Arial, sans-serif;
$georgia: Georgia, serif;
// Mobile breakpoints
@mixin mobile {
@media screen and (max-width: 640px) {
@content;
}
}