Skip to content

Commit 28b0c76

Browse files
committed
Added fylo landing page
1 parent a4f5d0c commit 28b0c76

File tree

1 file changed

+100
-0
lines changed

1 file changed

+100
-0
lines changed

FyloLandingPage/style.css

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,3 +200,103 @@ button {
200200
}
201201

202202
/* Footer */
203+
204+
footer {
205+
background-color: hsl(243, 87%, 12%);
206+
color: #fff;
207+
padding: 50px 0;
208+
}
209+
210+
footer ul {
211+
list-style-type: none;
212+
}
213+
214+
footer ul li {
215+
margin-bottom: 20px;
216+
}
217+
218+
footer .social-media {
219+
display: flex;
220+
align-items: center;
221+
justify-content: center;
222+
}
223+
224+
footer .circle {
225+
border: 1px solid #fff;
226+
border-radius: 50%;
227+
color: #fff;
228+
display: inline-flex;
229+
align-items: center;
230+
justify-content: center;
231+
margin-right: 10px;
232+
height: 40px;
233+
width: 40px;
234+
text-decoration: none;
235+
}
236+
237+
footer p {
238+
text-align: right;
239+
}
240+
241+
/* media quries */
242+
@media screen and (max-width: 768px) {
243+
body {
244+
text-align: center;
245+
}
246+
247+
nav {
248+
flex-direction: column;
249+
margin: 10px 0;
250+
}
251+
252+
nav ul li {
253+
margin: 10px 20px;
254+
}
255+
256+
.light-blueish::before {
257+
background-image: url("./images/bg-curve-mobile.svg");
258+
height: 80px;
259+
}
260+
261+
.flex {
262+
flex-direction: column;
263+
}
264+
265+
.flex > div {
266+
width: 100%;
267+
}
268+
269+
.flex > div:first-child {
270+
margin-right: 0;
271+
}
272+
273+
.flex > div:last-child {
274+
margin-left: 0;
275+
}
276+
277+
.testimonal-box {
278+
width: 100%;
279+
}
280+
281+
.blueish form input {
282+
flex: 1;
283+
}
284+
285+
.blueish form button {
286+
margin: 20px 0;
287+
width: 100%;
288+
}
289+
290+
.illustration {
291+
margin-top: 30px;
292+
}
293+
294+
.user-info {
295+
justify-content: center;
296+
}
297+
298+
footer ul {
299+
padding: 0;
300+
width: 100%;
301+
}
302+
}

0 commit comments

Comments
 (0)