aboutsummaryrefslogtreecommitdiff
path: root/scss/_variables.scss
diff options
context:
space:
mode:
authorGravatar Barry Clark <barry@barryclark.co> 2014-02-06 19:18:00 -0500
committerGravatar Barry Clark <barry@barryclark.co> 2014-02-06 19:18:00 -0500
commit72ac45045456bdbbbecb38db2e62e113f22f37d4 (patch)
tree048e5ed7634e6c048c88813291a390078bdc23d9 /scss/_variables.scss
downloadkompetenzbolzen.github.io-72ac45045456bdbbbecb38db2e62e113f22f37d4.tar.gz
First commit of base theme.
Diffstat (limited to 'scss/_variables.scss')
-rw-r--r--scss/_variables.scss32
1 files changed, 32 insertions, 0 deletions
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;
+ }
+}