diff options
| author | Barry Clark <barry@barryclark.co> | 2014-02-06 19:18:00 -0500 |
|---|---|---|
| committer | Barry Clark <barry@barryclark.co> | 2014-02-06 19:18:00 -0500 |
| commit | 72ac45045456bdbbbecb38db2e62e113f22f37d4 (patch) | |
| tree | 048e5ed7634e6c048c88813291a390078bdc23d9 /scss/_variables.scss | |
| download | acn-blog-72ac45045456bdbbbecb38db2e62e113f22f37d4.tar.gz acn-blog-72ac45045456bdbbbecb38db2e62e113f22f37d4.tar.bz2 acn-blog-72ac45045456bdbbbecb38db2e62e113f22f37d4.zip | |
First commit of base theme.
Diffstat (limited to 'scss/_variables.scss')
| -rw-r--r-- | scss/_variables.scss | 32 |
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; + } +} |
