a fresh start

This commit is contained in:
Mark Moser
2014-08-28 21:46:46 -05:00
commit 1a187efd62
86 changed files with 8040 additions and 0 deletions

View File

@ -0,0 +1,4 @@
@import "bootstrap/dist/css/bootstrap";
@import "fontawesome/css/font-awesome";
// @import "compass";

View File

@ -0,0 +1,7 @@
/*
any variables and settings should be defined here,
like colors for instance
*/
$backgroundColor: #fff;
$textColor: #000;

View File

@ -0,0 +1,10 @@
@charset "utf-8";
@import "settings";
@import "imports";
body {
background: $backgroundColor;
color: $textColor;
}