ducky/web
2015-07-07
Parent:99a43a6d1d30
ducky/web/src/styles/hero.scss
Update to hosted URL, use oauth-refresh in profiles. When syncing the profiles, use our oauth-refresh sync helper, so it won't fail because of an expired OAuth token. Also, update our URL to use the nginx-fronted URL.
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 }