forked from M3-Academy/practice-time-landing-page
feat(home): adicionando footer desktop e mobile
This commit is contained in:
parent
f3aa95ee91
commit
51a67e0ca2
BIN
assets/images/logo-face.png
Normal file
BIN
assets/images/logo-face.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 287 B |
BIN
assets/images/logo-insta.png
Normal file
BIN
assets/images/logo-insta.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 490 B |
BIN
assets/images/logo-youtube.png
Normal file
BIN
assets/images/logo-youtube.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 351 B |
@ -151,6 +151,35 @@ body {
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.footer{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
background: #000;
|
||||
|
||||
padding: 38px 0 ;
|
||||
}
|
||||
|
||||
.footer-icons {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.footer-icon {
|
||||
margin: 0 8px;
|
||||
}
|
||||
|
||||
.footer-text {
|
||||
font-weight: 400;
|
||||
font-size: 10px;
|
||||
line-height: 12px;
|
||||
text-transform: uppercase;
|
||||
|
||||
color: #BDBDBD;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 414px) {
|
||||
.main-banner-desktop {
|
||||
display: none;
|
||||
@ -193,6 +222,15 @@ body {
|
||||
.bottom-card-description{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding-bottom: 26px;
|
||||
}
|
||||
|
||||
.footer-text {
|
||||
text-align: center;
|
||||
max-width: 280px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 992px) {
|
||||
@ -265,7 +303,7 @@ body {
|
||||
.bottom-infocard-title {
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
|
||||
.bottom-infocard-text {
|
||||
max-width: 400px;
|
||||
}
|
||||
|
21
index.html
21
index.html
@ -82,5 +82,26 @@
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<ul class="footer-icons">
|
||||
<li class="footer-icon">
|
||||
<a href="#" target="_blank">
|
||||
<img class="footer-img" src="./assets/images/logo-insta.png" alt="Ícone Instagram"/>
|
||||
</a>
|
||||
</li>
|
||||
<li class="footer-icon">
|
||||
<a href="#">
|
||||
<img class="footer-img" src="/assets/images/logo-face.png" alt="Ícone Facebook">
|
||||
</a>
|
||||
</li>
|
||||
<li class="footer-icon">
|
||||
<a href="#">
|
||||
<img class="footer-img" src="/assets/images/logo-youtube.png" alt="Ícone 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>
|
Loading…
x
Reference in New Issue
Block a user