ducky/web

Paddy 2015-07-07 Parent:99a43a6d1d30

20:13d27b50d79e Go to Latest

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

Remove local-storage wrapper, minor updates to Me model. No longer use our local-storage helper (remove it entirely), as we're no longer going to be a Chrome app. So let's just always rely on localStorage. Update our Me URL to use the nginx-fronted URL. Add an email property to our Me model, to keep track of the email we logged in with. This is mostly used for setting up our subscription, and should be deprecated in the future.

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);