ducky/web

Paddy 2015-07-07 Parent:99a43a6d1d30

18:9b97c908a706 Go to Latest

ducky/web/src/styles/hero.scss

Fix bug in oauth-refresh, update for hosted path. Our nginx-fronted path has changed, so update the helper to hit the right URL. Also, fix a bug that would cause every failed request to be retried, which was suboptimal.

History
1 @import 'bourbon';
2 @import "neat";
3 @import "base/base";
5 $hero-background: #40526b;
6 $hero-color: white;
8 .hero {
9 background-color: $hero-background;
10 background-repeat: no-repeat;
11 background-position: top;
12 background-size: cover;
14 img.hero-logo {
15 height: 80px;
16 margin-bottom: 1em;
17 }
18 .hero-inner {
19 @include outer-container;
20 @include clearfix;
21 padding: 3em 3em 0 3em;
22 margin: auto;
23 text-align: center;
24 color: $hero-color;
26 .hero-copy {
27 text-align: center;
29 h1 {
30 font-size: 2.5em;
31 margin-bottom: .2em;
32 }
34 p {
35 margin: auto;
36 margin-bottom: 3em;
37 font-weight: 200;
38 font-size: 1.25em;
39 }
40 }
41 }
42 }