-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
312 lines (311 loc) · 5.24 KB
/
styles.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "roboto";
}
.flex {
display: flex;
align-items: center;
justify-content: center;
}
.top {
display: flex;
justify-content: space-around;
align-items: center;
padding-top: 1.35rem;
font-size: 0.8rem;
}
.top i {
color: white;
}
.buttons {
background-image: linear-gradient(to bottom, #337ab7 0%, #337ab7 100%);
border: 1px solid #23517a;
border-radius: 4px 4px 4px 4px;
padding: 0.5rem;
padding-left: 2.5rem;
padding-right: 2.5rem;
color: #ffffff;
font-size: 1rem;
}
.buttons,
.top img {
cursor: pointer;
}
.image {
display: flex;
justify-content: space-between;
align-items: center;
width: 12rem;
}
.image img {
height: 2rem;
}
main {
width: 100%;
min-height: 100svh;
margin-top: 1.5rem;
display: flex;
justify-content: center;
margin-bottom: 3rem;
background-position: center;
background-image: linear-gradient(
to bottom,
rgba(5%, 16%, 31%, 0.68) 0%,
rgba(5%, 16%, 31%, 0.68) 100%
),
url(https://d30itml3t0pwpf.cloudfront.net/api/v3/medias/16361625/image/opt/original/1685653453-d809e301);
background-attachment: scroll;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
main h1 {
text-align: center;
}
.first_content {
padding: 0rem 4rem;
}
.second_content {
color: skyblue !important;
}
.inside_main {
width: 100%;
max-width: 1000px;
}
.logos_one {
padding-top: 1rem;
gap: 1rem;
}
.logos_one img {
height: 2rem;
}
.logos_two {
margin-top: 2rem;
}
.logos_two img {
height: 6rem;
}
.main_content {
margin-top: 2rem;
}
.main_content h2 {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.main_content h1 {
color: white;
}
.logos_three {
margin-top: 5rem;
gap: 2rem;
}
.logos_three img {
height: 6rem;
}
.signup_section {
width: 100%;
}
.signup {
width: 50%;
max-width: 900px;
font-size: 1.2rem;
}
.signup_section h1 {
color: blue;
margin-bottom: 3rem;
}
.signup_section p {
width: 100%;
padding-left: 2rem;
padding-right: 2rem;
text-wrap: wrap;
}
.signup_section button {
color: white;
height: 4rem;
width: 100%;
margin-bottom: 1rem;
margin-top: 1rem;
background-image: linear-gradient(to bottom, #337ab7 0%, #337ab7 100%);
border: 1px solid #23517a;
border-radius: 4px;
font-size: 1rem;
}
button:hover {
background-image: linear-gradient(to bottom, #2b6699 0%, #2b6699 100%);
cursor: pointer;
}
.about_us_section {
font-size: 0.9rem;
margin-bottom: 10rem;
margin-top: 3rem;
width: 100%;
}
.about_us_container {
width: 70%;
gap: 2rem;
}
.about_us {
flex: 1 1 calc(25%);
flex-wrap: wrap;
text-wrap: wrap;
}
.about_us_image {
width: 100%;
margin-bottom: 1rem;
}
.about_us_image img {
width: 70%;
max-width: 100px;
}
.about_us h1 {
font-size: 0.8rem;
}
footer {
width: 100%;
flex-direction: column;
gap: 1rem;
padding-bottom: 2rem;
padding-top: 1rem;
background-color: #23517a;
color: white;
}
.line {
border: 1px solid white;
width: 50%;
}
.floating_btn {
position: fixed;
left: 0.5rem;
bottom: 0.25rem;
font-size: 0.95rem;
border: none;
padding: 5px;
padding-left: 1rem;
padding-right: 1rem;
background-color: rgb(106, 95, 95);
color: white;
border-radius: 4px;
}
.floating_btn:hover {
background-color: #2b6699;
animation: hoverEffect 0.5s forwards;
}
.floating_btn img {
width: 1.5rem;
}
@keyframes hoverEffect {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
.signup_section_form {
width: 100%;
flex-direction: column;
gap: 2rem;
margin-bottom: 10rem;
}
.signup_section_form form {
width: 100%;
max-width: 600px;
}
.signup_section_form form input,
.signup_section_form form select {
width: 100%;
font-size: 0.9rem;
padding: 0.7rem;
margin-bottom: 0.5rem;
border: 1px solid grey;
outline: none;
border-radius: 5px;
}
.signup_section_form form select {
color: gray;
}
.submit_button {
width: 100%;
}
.submit_button button {
padding: 1rem;
padding-left: 8rem;
padding-right: 8rem;
}
.product_section {
width: 100%;
margin-top: 10rem;
margin-bottom: 10rem;
}
.product_container h2 {
margin-top: 2rem;
margin-bottom: 2rem;
}
.product_container h1 {
font-size: 2rem;
text-align: center;
font-weight: bold;
}
.product_container {
width: 80%;
max-width: 800px;
}
.product_container img {
width: 100%;
}
#follow_linkedin {
padding: 1.3rem;
padding-left: 8rem;
padding-right: 8rem;
margin-top: 3rem;
}
#follow_linkedin i {
color: #337ab7;
background-color: #ffffff;
padding: 3px;
border-radius: 5px;
}
.half_input {
gap: 1rem;
}
@media (max-width: 600px) {
.top,
.about_us_container {
flex-direction: column;
gap: 1rem;
}
#follow_linkedin {
width: 100%;
padding-left: 0;
padding-right: 0;
}
.signup {
width: 100%;
}
.half_input {
flex-direction: column;
}
form,
main,
section {
padding-left: 1rem;
padding-right: 1rem;
}
.line {
width: 70%;
}
main {
background-image: linear-gradient(
to bottom,
rgba(0%, 0%, 0%, 0.64) 0%,
rgba(0%, 0%, 0%, 0.64) 100%
),
url(https://d30itml3t0pwpf.cloudfront.net/api/v3/medias/16374896/image/opt/original/1686898149-e8ac075e);
}
}