Move Sass to default _sass directory via @LeoColomb #39

This commit is contained in:
Barry Clark 2015-02-23 01:14:19 -05:00
parent 19706125aa
commit b83d46fb2b
6 changed files with 4 additions and 5 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;
}
}