UNPKG

1.92 kBSCSSView Raw
1// Copyright (c) 2018 Uber Technologies, Inc.
2//
3// Permission is hereby granted, free of charge, to any person obtaining a copy
4// of this software and associated documentation files (the "Software"), to deal
5// in the Software without restriction, including without limitation the rights
6// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7// copies of the Software, and to permit persons to whom the Software is
8// furnished to do so, subject to the following conditions:
9//
10// The above copyright notice and this permission notice shall be included in
11// all copies or substantial portions of the Software.
12//
13// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19// THE SOFTWARE.
20
21@import 'variables';
22
23.Hero {
24 color: $white;
25 background-color: $black-20;
26 user-select: none;
27 padding: 5rem 4rem;
28 overflow: hidden;
29
30 h1 {
31 font-size: 56px;
32 font-weight: 600;
33 line-height: 80px;
34 text-transform: capitalize;
35 }
36
37 p {
38 color: $white-40;
39 }
40
41 .btn {
42 border: 2px solid $primary;
43 border-image: $gradient-1;
44 border-image-slice: 2;
45 transition: background-color 150ms ease-in, color 150ms ease-in;
46
47 font-size: 20px;
48 line-height: 28px;
49
50 padding: 1rem 3rem;
51 margin-top: 2rem;
52
53 &:hover {
54 color: $white;
55 background-color: rgba(0, 173, 230, 0.3);
56 }
57 }
58
59 @media screen and (max-width: $mobile) {
60
61 padding: 3rem 2rem;
62
63 h1 {
64 font-size: 1.75rem;
65 }
66
67 p {
68 font-size: 0.75rem;
69 }
70
71 }
72}