Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.hero {
height: 100vh;
max-width: 1800px;
margin: 0 auto;
display: flex;
flex-direction: column;
background-color: #ff4754;
color: whitesmoke;
> .body {
flex-grow: 1;
}
.heroText {
display: flex;
justify-content: center;
align-items: center;
}
.primary {
max-width: 560px;
h2 {
font-size: 2.2em;
font-weight: 700;
}
h3 {
font-size: 1.2em;
font-weight: 400;
margin: 0;
}
}
.heroFix {
min-height: 128px;
}
.link {
display: block;
margin-top: 4em;
color: white;
text-decoration: none;
span {
font-weight: 400;
border-bottom: 2px solid white;
}
}
}
// will be moved to its own component
.nav {
width: 100%;
min-height: 128px;
padding: 40px;
flex: 0 1;
display: flex;
.logo {
height: 48px;
}
}