Adiciona o footer desktop e mobile

This commit is contained in:
Lorena Camila Coelho Máximo 2022-10-12 22:13:06 -04:00
parent 7d29226537
commit 0d4ac14f34
5 changed files with 65 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 B

View File

@ -150,9 +150,34 @@ body {
line-height: 24px;
}
.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;
}
.bottom-infocard {
flex-direction: column;
padding: 80px 0 136px;
flex-direction: column;
padding: 80px 0 136px;
}
.bottom-infocard-image {
@ -166,7 +191,7 @@ padding: 80px 0 136px;
}
.bottom-infocard-title {
font-size: 24px;
font-size: 24px;
}
@ -206,6 +231,16 @@ padding: 80px 0 136px;
font-size: 14px;
}
..page-footer {
padding-bottom: 26px;
}
.footer-text {
max-width: 280px;
text-align: center;
}
}
@media screen and (max-width: 992px) {

View File

@ -143,6 +143,33 @@
</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="ícone do Instagram" />
</a>
</li>
<li class="footer-icon">
<a href="#" target="_blank">
<img src="/assets/images/facebook-icon.png" alt="ícone do Facebook" />
</a>
</li>
<li class="footer-icon">
<a href="#" target="_blank">
<img src="/assets/images/youtube-icon.png" alt="ícone do Youtube" />
</a>
</li>
</ul>
<p class="footer-text">
Copyright © 2020 - Loja Comércio Eletrônico CNPJ: 000.000.000/0001-00
</p>
</footer>
</body>
</html>