From b83d46fb2b803417bfb0125039b885f2182bcf7b Mon Sep 17 00:00:00 2001 From: Barry Clark Date: Mon, 23 Feb 2015 01:14:19 -0500 Subject: Move Sass to default _sass directory via @LeoColomb #39 --- _sass/_variables.scss | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 _sass/_variables.scss (limited to '_sass/_variables.scss') diff --git a/_sass/_variables.scss b/_sass/_variables.scss new file mode 100644 index 0000000..e56c1c5 --- /dev/null +++ b/_sass/_variables.scss @@ -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; + } +} \ No newline at end of file -- cgit v1.2.3