From 72ac45045456bdbbbecb38db2e62e113f22f37d4 Mon Sep 17 00:00:00 2001 From: Barry Clark Date: Thu, 6 Feb 2014 19:18:00 -0500 Subject: First commit of base theme. --- scss/_variables.scss | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 scss/_variables.scss (limited to 'scss/_variables.scss') diff --git a/scss/_variables.scss b/scss/_variables.scss new file mode 100644 index 0000000..0a85575 --- /dev/null +++ b/scss/_variables.scss @@ -0,0 +1,32 @@ + +// +// VARIABLES +// + +// Colors +$blue: #4183C4; +$orange: #D26911; + +// Grays +$black: #000; +$darkerGray: #222; +$darkGray: #333; +$gray: #666; +$lightGray: #bbb; +$lighterGray: #eee; +$white: #fff; + +// Font stacks +$helvetica: Helvetica, Arial, sans-serif; +$helveticaNeue: "Helvetica Neue", Helvetica, Arial, sans-serif; +$georgia: Georgia, serif; + +// Breakpoints +$mobile-width: 520px !default; + +// Mobile breakpoint +@mixin mobile { + @media screen and (max-width: $mobile-width) { + @content; + } +} -- cgit v1.2.3