aboutsummaryrefslogtreecommitdiff
path: root/scss/_variables.scss
blob: 53bae88049ac6fcde41f5304d3b1ae040447a473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// VARIABLES
//

// Colors
$blue: #4183C4; 
$orange: #D26911;

// Grays
$black: #000;
$darkerGray: #222;
$darkGray: #333;
$gray: #666;
$lightGray: #aaa;
$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;
  }
}