forked from M3-Academy/practice-time-landing-page
Cria o footer desktop e mobile
This commit is contained in:
parent
29ef7b30a2
commit
303d36e996
BIN
assets/images/facebook-icon.png
Normal file
BIN
assets/images/facebook-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 287 B |
BIN
assets/images/instagram-icon.png
Normal file
BIN
assets/images/instagram-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 492 B |
BIN
assets/images/youtube-icon.png
Normal file
BIN
assets/images/youtube-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 350 B |
@ -148,6 +148,30 @@ body{
|
|||||||
line-height: 24px;
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 414px){
|
@media screen and (max-width: 414px){
|
||||||
.main-banner-desktop,
|
.main-banner-desktop,
|
||||||
.middle-banner-desktop{
|
.middle-banner-desktop{
|
||||||
@ -181,6 +205,15 @@ body{
|
|||||||
.bottom-cards-descripition{
|
.bottom-cards-descripition{
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.page-footer{
|
||||||
|
padding-bottom: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-text{
|
||||||
|
max-width: 280px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 992px) {
|
@media screen and (max-width: 992px) {
|
||||||
|
26
index.html
26
index.html
@ -107,5 +107,31 @@
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</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>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p class="footer-text">
|
||||||
|
Copyright © 2020 - Loja Comércio Eletrônico | CNPJ: 000.000.000/0001-00
|
||||||
|
</p>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user