forked from M3-Academy/challenge-landing-page
fix(home): Corregido os links das redes sociais
This commit is contained in:
parent
24529dbd9f
commit
28a5309e57
@ -1,14 +1,17 @@
|
|||||||
|
/* Tirar as margins e paddings iniciais*/
|
||||||
* {
|
* {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*Fonte e cores no body*/
|
||||||
body {
|
body {
|
||||||
font-family: "Inter", sans-serif;
|
font-family: "Inter", sans-serif;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*Estilização do Cabeçalho*/
|
||||||
.page-header {
|
.page-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 28px 0;
|
padding: 28px 0;
|
||||||
@ -20,11 +23,13 @@ body {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*Ajuste da imagem do banner principal*/
|
||||||
.main-banner {
|
.main-banner {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*Estilização do Infocard do topo */
|
||||||
.top-infocard {
|
.top-infocard {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -64,6 +69,7 @@ body {
|
|||||||
margin-bottom: 74px;
|
margin-bottom: 74px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*Estilização dos cards topo*/
|
||||||
.top-cards {
|
.top-cards {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(3, 1fr);
|
grid-template-columns: repeat(3, 1fr);
|
||||||
@ -93,6 +99,7 @@ body {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*Estilização dos banners do meio*/
|
||||||
.middle-banners {
|
.middle-banners {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@ -123,6 +130,7 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Estilização dos cards inferiores*/
|
||||||
.bottom-cards {
|
.bottom-cards {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(4, 1fr);
|
grid-template-columns: repeat(4, 1fr);
|
||||||
@ -153,6 +161,7 @@ body {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*Estilização do Infocard inferior */
|
||||||
.bottom-infocard {
|
.bottom-infocard {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -182,6 +191,7 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*Estilização do Rodapé*/
|
||||||
.page-footer {
|
.page-footer {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -208,6 +218,7 @@ body {
|
|||||||
color: #bdbdbd;
|
color: #bdbdbd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Estilização de telas menores que 1024px*/
|
||||||
@media screen and (max-width: 1024px) {
|
@media screen and (max-width: 1024px) {
|
||||||
.main-banner-desktop {
|
.main-banner-desktop {
|
||||||
display: none;
|
display: none;
|
||||||
@ -215,6 +226,7 @@ body {
|
|||||||
.bottom-banner-desktop {
|
.bottom-banner-desktop {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-infocard {
|
.top-infocard {
|
||||||
padding: 73px 32px 90px;
|
padding: 73px 32px 90px;
|
||||||
margin: 0 auto 0;
|
margin: 0 auto 0;
|
||||||
@ -309,6 +321,7 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*Estilização para telas maiores que 2500px*/
|
||||||
@media screen and (min-width: 2500px) {
|
@media screen and (min-width: 2500px) {
|
||||||
.page-header {
|
.page-header {
|
||||||
padding: 56px 0;
|
padding: 56px 0;
|
||||||
|
19
index.html
19
index.html
@ -15,7 +15,7 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<!--Cabeçalho com a Logo-->
|
||||||
<header class="page-header">
|
<header class="page-header">
|
||||||
<a href="/">
|
<a href="/">
|
||||||
<img class="header-logo" src="./assets/imagens/Logo-M3Academy 1.svg" alt="Logo M3 Academy" />
|
<img class="header-logo" src="./assets/imagens/Logo-M3Academy 1.svg" alt="Logo M3 Academy" />
|
||||||
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
<!--Banner Principal da Página-->
|
||||||
<section>
|
<section>
|
||||||
<figure>
|
<figure>
|
||||||
<img class="main-banner main-banner-desktop" src="./assets/imagens/main-banner-desktop.png"
|
<img class="main-banner main-banner-desktop" src="./assets/imagens/main-banner-desktop.png"
|
||||||
@ -34,6 +34,7 @@
|
|||||||
</figure>
|
</figure>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<!--Banner do Infocard do Topo-->
|
||||||
<section class="top-infocard">
|
<section class="top-infocard">
|
||||||
<div class="top-infocard-text">
|
<div class="top-infocard-text">
|
||||||
<h2 class="top-infocard-subtitle">Lorem ipsum</h2>
|
<h2 class="top-infocard-subtitle">Lorem ipsum</h2>
|
||||||
@ -51,6 +52,7 @@
|
|||||||
</figure>
|
</figure>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<!--Card do topo-->
|
||||||
<section class="top-cards">
|
<section class="top-cards">
|
||||||
<figure class="top-card">
|
<figure class="top-card">
|
||||||
<img class="top-card-image" src="./assets/imagens/top-card-image-01.png"
|
<img class="top-card-image" src="./assets/imagens/top-card-image-01.png"
|
||||||
@ -83,6 +85,8 @@
|
|||||||
</figcaption>
|
</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<!--Banner com 3 imagens-->
|
||||||
<section class="middle-banners">
|
<section class="middle-banners">
|
||||||
<div class="middle-banners-wrapper">
|
<div class="middle-banners-wrapper">
|
||||||
<figure class="middle-banner image-01">
|
<figure class="middle-banner image-01">
|
||||||
@ -99,6 +103,8 @@
|
|||||||
</figure>
|
</figure>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<!--Cards da parte inferior-->
|
||||||
<section class="bottom-cards">
|
<section class="bottom-cards">
|
||||||
<figure class="bottom-card">
|
<figure class="bottom-card">
|
||||||
<img class="bottom-card-image" src="./assets/imagens/bottom-card-image-01.png"
|
<img class="bottom-card-image" src="./assets/imagens/bottom-card-image-01.png"
|
||||||
@ -146,6 +152,7 @@
|
|||||||
</figure>
|
</figure>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<!--Infocard da parte inferior-->
|
||||||
<section class="bottom-infocard">
|
<section class="bottom-infocard">
|
||||||
<div class="bottom-infocard-text">
|
<div class="bottom-infocard-text">
|
||||||
<h2 class="bottom-infocard-subtitle">Lorem ipsum dolor sit amet</h2>
|
<h2 class="bottom-infocard-subtitle">Lorem ipsum dolor sit amet</h2>
|
||||||
@ -166,21 +173,23 @@
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
|
<!--Rodapé com as informações das redes sociais-->
|
||||||
<footer class="page-footer">
|
<footer class="page-footer">
|
||||||
<ul class="footer-icons">
|
<ul class="footer-icons">
|
||||||
<li class="footer-icon">
|
<li class="footer-icon">
|
||||||
<a href="#" target="_blank">
|
<a href="https://www.instagram.com/m3.ecommerce/" target="_blank">
|
||||||
<img class="rede-social-imagem" src="./assets/imagens/instagram-icon.png"
|
<img class="rede-social-imagem" src="./assets/imagens/instagram-icon.png"
|
||||||
alt="Icone do Instagram" />
|
alt="Icone do Instagram" />
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="footer-icon">
|
<li class="footer-icon">
|
||||||
<a href="#" target="_blank">
|
<a href="https://www.facebook.com/digitalm3/" target="_blank">
|
||||||
<img class="rede-social-imagem" src="./assets/imagens/facebook-icon.png" alt="Icone do Facebook" />
|
<img class="rede-social-imagem" src="./assets/imagens/facebook-icon.png" alt="Icone do Facebook" />
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="footer-icon">
|
<li class="footer-icon">
|
||||||
<a href="#" target="_blank">
|
<a href="https://www.youtube.com/channel/UCSMoUkouJCf_LUYfFiIK2yw/featured" target="_blank">
|
||||||
<img class="rede-social-imagem" src="./assets/imagens/youtube-icon.png" alt="Icone do Youtube" />
|
<img class="rede-social-imagem" src="./assets/imagens/youtube-icon.png" alt="Icone do Youtube" />
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
Reference in New Issue
Block a user