-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
108 lines (85 loc) · 1.44 KB
/
index.css
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@700;800&family=Roboto:wght@400;500;700&display=swap');
* {
font-family: 'Roboto', sans-serif;
}
.merriweather {
font-family: 'Merriweather Sans', sans-serif;
}
.weight-800 {
font-weight: 800;
}
.weight-700 {
font-weight: 700;
}
a {
color: black;
text-decoration: underline;
}
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
.center {
text-align: center;
}
.size-4em {
font-size: 4em;
}
.size-2em {
font-size: 2em;
}
.size-1-25em {
font-size: 1.25em;
}
.section {
padding: 10vh 0;
}
.nopad {
padding: 0;
margin: 0;
}
.buttonbar {
margin-top: 15px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.buttonbar > *:not(:last-child) {
margin-right: 10px;
}
.feature {
padding: 0 10vw 0 10vw;
}
.feature:not(:last-child) {
padding-bottom: 7.5vh;
}
@media (min-width:600px) {
.feature {
padding: 0 50vw 0 12.5vw;
}
.feature.right {
padding: 0 12.5vw 0 50vw;
text-align: right;
}
}
@media (min-width:961px) {
.feature {
padding: 0 62.5vw 0 12.5vw;
}
.feature.right {
padding: 0 12.5vw 0 62.5vw;
}
}
.feature.right > * {
margin-right: auto;
}
.feature > span {
text-transform: uppercase;
font-weight: 500;
}
.feature > h1 {
margin-top: 0;
}