aboutsummaryrefslogtreecommitdiff
path: root/_scss/_variables.scss
diff options
context:
space:
mode:
Diffstat (limited to '_scss/_variables.scss')
-rw-r--r--_scss/_variables.scss27
1 files changed, 27 insertions, 0 deletions
diff --git a/_scss/_variables.scss b/_scss/_variables.scss
new file mode 100644
index 0000000..5ec3394
--- /dev/null
+++ b/_scss/_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