feat: Cria footer da landing page

This commit is contained in:
ThiagoDuutra 2022-10-12 08:20:59 -03:00
parent 202a1f2181
commit 4b6c2266a4
7 changed files with 66 additions and 1 deletions

BIN
assets/imgs/footer-face.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

BIN
assets/imgs/footer-yt.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 B

View File

@ -125,10 +125,35 @@
<img class="bottom-infocard-img bottom-infocard-img-mobile" src="assets/imgs/bottom-inforcard-mobile.png" <img class="bottom-infocard-img bottom-infocard-img-mobile" src="assets/imgs/bottom-inforcard-mobile.png"
alt="Banner infocard mobile"> alt="Banner infocard mobile">
</figure> </figure>
</section> </section>
</main> </main>
<footer class="footer">
<ul class="container-footer-icons">
<li class="footer-icon">
<a href="#" target="_blank">
<img src="assets/imgs/footer-insta.png" alt="Icone instagram">
</a>
</li>
<li class="footer-icon">
<a href="#" target="_blank">
<img src="assets/imgs/footer-face.png" alt="Icone facebook">
</a>
</li>
<li class="footer-icon">
<a href="#" target="_blank">
<img src="assets/imgs/footer-yt.png" alt="Icone youtube">
</a>
</li>
</ul>
<p class="footer-text">
Copyright © 2020 - Loja Comércio Eletrônico CNPJ: 000.000.000/0001-00
</p>
</footer>
<body> <body>
</body> </body>

View File

@ -3,4 +3,5 @@
--white: #fff; --white: #fff;
--bg-light-gray: #e5e5e5; --bg-light-gray: #e5e5e5;
--middlebg-gray: #e0e0e0; --middlebg-gray: #e0e0e0;
--letter-footer: #bdbdbd;
} }

38
style/footer.css Normal file
View File

@ -0,0 +1,38 @@
.footer {
display: flex;
align-items: center;
text-align: center;
background: var(--black);
flex-direction: column;
padding: 38px 0;
max-width: 100%;
}
.container-footer-icons {
display: flex;
list-style: none;
margin-bottom: 16px;
gap: 16px;
}
.footer-icon {
width: 20%;
}
.footer-text {
color: var(--letter-footer);
font-size: 10px;
line-height: 12px;
text-transform: uppercase;
}
@media (max-width: 414px) {
.footer {
max-width: 100%;
padding: 32px 77px;
}
.footer-text {
width: 63%;
}
}

View File

@ -3,3 +3,4 @@
@import url("colors.css"); @import url("colors.css");
@import url("header.css"); @import url("header.css");
@import url("main.css"); @import url("main.css");
@import url("footer.css");