-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding-page-stylesheet.css
179 lines (154 loc) · 2.75 KB
/
landing-page-stylesheet.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
*{
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body {
min-height: 100vh;
margin: 0;
}
.header,.hero {
background-color: #1F2937;
padding-left: 100px;
padding-right: 100px;
}
.header {
display: flex;
padding-top: 5px;
align-items: center;
justify-content: space-between;
}
.logo {
font-size: 24px;
color: #F9FAF8;
margin-right: auto;
font-weight: bold;
}
ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
gap: 16px;
}
a, .hero-main-subtext, #footer {
font-size: 18px;
color: #E5E7EB;
text-decoration: none;
}
.hero {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 50px;
gap: 40px;
}
.hero-left {
display: flex;
flex-direction: column;
flex: 1;
gap: 20px;
}
.hero-right {
flex: 1;
}
.hero-main-text {
font-size: 48px;
font-weight: 900;
color: #F9FAF8;
}
.hero-sign-up {
background-color: #3882F6;
padding: 10px 30px;
color: #F9FAF8;
border: none;
border-radius: 12px;
font-size: 20px;
width: 150px;
}
.hero-img {
max-width: 100%;
height: auto;
min-width: 200px;
border-radius: 12px;
}
.our-team-header {
font-size: 36px;
font-weight: 900;
color: #1F2937;
text-align: center;
}
.our-team-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 30px 100px 75px 100px;
gap: 40px;
}
.our-team {
display: flex;
flex-flow: column nowrap;
width: 250px;
}
.info-pic {
border-radius: 12px;
}
.subtext {
text-align: center;
color: #1F2937;
font-weight: 300;
font-size: 20px;
}
#quote-box {
background-color: #E5E7EB;
padding: 50px 100px;
}
.quote {
font-size: 36px;
font-style: italic;
color: #1F2937;
font-weight: 200;
}
.quoter {
text-align: right;
color: #1F2937;
font-weight: bold;
font-size: 16px;
}
.cta-box {
display: flex;
justify-content: center;
align-items: center;
padding: 50px 100px;
}
.cta-container {
background-color: #3882F6;
display: flex;
justify-content: space-around;
align-items: center;
padding: 20px 50px;
color: #F9FAF8;
font-size: 20px;
flex: 1;
gap: 50px;
}
.cta-header {
font-weight: 700;
}
.cta-button {
background-color: #3882F6;
color: #F9FAF8;
border-color: #F9FAF8;
border-radius: 12px;
font-size: 20px;
min-width: 150px;
min-height: 50px;
border-width: 2px;
border-style: solid;
}
#footer {
display: flex;
justify-content: center;
align-items: center;
background-color: #1F2937;
padding: 20px auto;
color: #F9FAF8;
}