-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
182 lines (150 loc) · 2.67 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/* EVERYTHING */
* {
margin: 0px;
}
/* BODY */
body {
font-family: 'Roboto', sans-serif;
}
/* HEADER */
header {
background-color: #1F2937;
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 240px;
}
header h1 {
color: white;
font-size: 24px;
margin: 0px;
}
header ul {
display: flex;
list-style-type: none;
margin: 0px;
}
header li {
color: lightgray;
padding-left: 16px;
}
/* HERO */
.hero {
background-color: #1F2937;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 80px 240px 120px;
}
.hero .hero-left {
display: flex;
flex-direction: column;
padding-right: 40px;
}
.hero .hero-left h1 {
margin-bottom: 0px;
font-size: 48px;
font-weight: 800;
color: #F9FAF8;
}
.hero .hero-left p {
font-size: 18px;
color: #E5E7EB;
margin: 0px 0px 24px 0px;
}
.hero button {
background-color: #3B82F6;
width: 104px;
border-radius: 6px;
border: 0px;
color: white;
padding: 16px 8px;
font-size: 18px;
}
.hero img {
width: 640px;
}
/* WHITE SECTION */
.section-white {
margin: 64px 0px;
display: flex;
align-items: center;
flex-direction: column;
}
.section-white h2 {
font-size: 36px;
font-weight: 800;
margin-bottom: 40px;
}
.box-row {
display: flex;
justify-content: space-between;
width: 960px;
}
.box-unit {
width: 184px;
color: gray;
text-align: center;
}
.section-white .square {
border: 4px #3B82F6 solid;
border-radius: 16px;
height: 184px;
}
/* GRAY SECTION */
.section-gray {
background-color: #E5E7EB;
display: flex;
align-items: center;
flex-direction: column;
padding: 120px 440px;
}
.section-gray .quote {
font-size: 36px;
font-weight: 200;
color: #1F2937;
}
.section-gray .quote-attribution {
font-size: 24px;
align-self: flex-end;
}
/* SECTION CTA */
.section-cta {
background-color: white;
}
.blue-cta {
background-color: #3B82F6;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 72px 160px;
margin: 120px 264px;
border-radius: 16px;
}
.blue-cta {
font-size: 20px;
}
.blue-cta h3 {
font-size: 32px;
font-weight: 800;
}
.blue-cta button {
background-color: #3B82F6;
color: white;
border: 2px white solid;
border-radius: 6px;
padding: 8px 40px;
font-size: 20px;
font-weight: 800;
}
/* FOOTER */
footer {
background-color: #1F2937;
color: #E5E7EB;
display: flex;
justify-content: center;
padding: 64px 240px;
font-size: 20px;
}