Adiciona o Footer

This commit is contained in:
Wynther Wynther 2022-10-07 17:51:31 -03:00
parent 2f2342a405
commit aa122c1fd0
6 changed files with 57 additions and 0 deletions

Binary file not shown.

BIN
img/fblogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 B

BIN
img/iglogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

BIN
img/ytlogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 B

View File

@ -16,6 +16,7 @@
<header class="header"> <header class="header">
<img src="./img/Logo M3 [branco] (4) 1.png" alt="M3 Logo" /> <img src="./img/Logo M3 [branco] (4) 1.png" alt="M3 Logo" />
</header> </header>
<main>
<section class="banner"> <section class="banner">
<img <img
src="./img/desktop banner.png" alt="Banner principal" class="banner-desktop"/> src="./img/desktop banner.png" alt="Banner principal" class="banner-desktop"/>
@ -83,5 +84,30 @@
Donec finibus turpis vitae lectus interdum rutrum vitae sed augue.</p> Donec finibus turpis vitae lectus interdum rutrum vitae sed augue.</p>
</div> </div>
</section> </section>
</main>
<footer class="footer">
<div>
<ul class="footer-icons">
<li>
<a href="#" target="_blank">
<img src="./img/iglogo.png" alt="Ícone do Instagram">
</a>
</li>
<li>
<a href="#" target="_blank">
<img src="./img/fblogo.png" alt="Ícone do Facebook">
</a>
</li>
<li>
<a href="#" target="_blank">
<img src="./img/ytlogo.png" alt="Ícone do Youtube">
</a>
</li>
</ul>
</div>
<p class="footer-desc">
Copyright © 2020 - Loja Comércio Eletrônico CNPJ: 000.000.000/0001-00
</p>
</footer>
</body> </body>
</html> </html>

View File

@ -146,6 +146,29 @@ body{
font-size: 32px; font-size: 32px;
font: 600; font: 600;
} }
.footer{
display: flex;
flex-direction: column;
align-items: center;
background: #000000;
padding:38px;
}
.footer-desc{
text-transform: uppercase;
list-style: 12px;
font-size: 10px;
color: #bdbdbd;
}
.footer-icons{
display: flex;
list-style: none;
margin-bottom: 16px;
}
.footer-icons li{
margin: 0 8px;
}
@media screen and (max-width: 414px) { @media screen and (max-width: 414px) {
.banner-desktop, .banner-desktop,
.middle-banner-desktop{ .middle-banner-desktop{
@ -169,6 +192,14 @@ body{
grid-template-columns: 1fr; grid-template-columns: 1fr;
gap:16px; gap:16px;
} }
.footer{
padding-bottom: 26px;
}
.footer-desc{
max-width: 280px;
text-align: center;
}
} }
@media screen and (max-width: 992px) { @media screen and (max-width: 992px) {