ducky/web

Paddy 2015-07-07 Parent:99a43a6d1d30

16:5d47855181e1 Go to Latest

ducky/web/src/styles/base/_variables.scss

Make production builds possible. Our production builds were erroring out, making it hard to deploy. This fixes things so that our production builds succeed, though I'm lying if I say I understand all the reasoning behind it. The major reasoning seems to be "BUGS".

History
1 // Typography
2 $base-font-family: $helvetica;
3 $heading-font-family: $base-font-family;
5 // Font Sizes
6 $base-font-size: 1em;
8 // Line height
9 $base-line-height: 1.5;
10 $heading-line-height: 1.2;
12 // Other Sizes
13 $base-border-radius: 3px;
14 $base-spacing: $base-line-height * 1em;
15 $small-spacing: $base-spacing / 2;
16 $base-z-index: 0;
18 // Colors
19 $blue: #477dca;
20 $dark-gray: #333;
21 $medium-gray: #999;
22 $light-gray: #ddd;
24 // Font Colors
25 $base-background-color: #fff;
26 $base-font-color: $dark-gray;
27 $action-color: $blue;
29 // Border
30 $base-border-color: $light-gray;
31 $base-border: 1px solid $base-border-color;
33 // Forms
34 $form-box-shadow: inset 0 1px 3px rgba(#000, 0.06);
35 $form-box-shadow-focus: $form-box-shadow, 0 0 5px adjust-color($action-color, $lightness: -5%, $alpha: -0.3);