Cria o Footer desktop e mobile

This commit is contained in:
Rhayllon Daudt 2022-10-10 03:56:55 -03:00
parent 0beb041a3f
commit 1c8b47e2f7
5 changed files with 82 additions and 23 deletions

View File

@ -125,6 +125,31 @@ body{
text-align: center;
}
.page-footer{
display: flex;
flex-direction: column;
align-items: center;
padding: 38px 0;
background: #000000;
}
.footer-icons{
display: flex;
list-style: none;
margin-bottom: 16px;
}
.footer-icon{
margin: 0 8px;
}
.footer-text{
font-size: 10px;
line-height: 12px;
text-transform: uppercase;
color: #BDBDBD;
}
@media screen and (max-width: 414px) {
.main-banner-desktop,
.middle-banner-desktop {
@ -159,8 +184,6 @@ body{
font-size: 14px;
}
}
.bottom-infocard{
display: flex;
align-items: center;
@ -189,6 +212,16 @@ body{
line-height: 24px;
}
.page-footer{
padding-bottom: 26px;
}
.footer-text{
max-width: 280px;
text-align: center;
}
}
@media screen and (max-width: 992px) {
.top-infocard{
flex-direction: column;

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 B

View File

@ -132,5 +132,31 @@
</div>
</section>
</main>
<footer class="page-footer">
<ul class="footer-icons">
<li class="footer-icon">
<a href="#" target="_blank">
<img src="./assets/images/instagram-icon.png" alt="Icone do Instagram">
</a>
</li>
<li class="footer-icon">
<a href="#" target="_blank">
<img src="./assets/images/facebook-icon.png" alt="Icone do Facebook">
</a>
</li>
<li class="footer-icon">
<a href="#" target="_blank">
<img src="./assets/images/youtube-icon.png" alt="Icone do Youtube">
</a>
</li>
<p class="footer-text">
Copyright © 2020 - Loja Comércio Eletrônico CNPJ: 000.000.000/0001-00
</p>
</ul>
</footer>
</body>
</html>