patrickreischallenge #1

Merged
PatrickReisSantos merged 11 commits from patrickreischallenge into main 2022-10-14 01:06:19 +00:00
6 changed files with 53 additions and 0 deletions
Showing only changes of commit fda166c91a - Show all commits

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

BIN
assets/Images/face-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

BIN
assets/Images/yt-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 B

View File

@ -167,6 +167,30 @@ body {
padding: 50px 280px 116px;
}
.page-footer {
padding: 38px 38px;
display: flex;
flex-direction: column;
align-items: center;
background: black;
}
.footer-texto {
color: #bdbdbd;
font-size: 10px;
line-height: 12px;
text-transform: uppercase;
}
.footer-icons-ul {
display: flex;
list-style: none;
margin-bottom: 16px;
}
.footer-icon {
margin: 0 21px;
}
@media screen and (max-width: 1180px) {
.top-titulo-h2 {
font-size: 20px;
@ -228,6 +252,10 @@ body {
"menu menu "
"menu menu ";
}
.page-footer {
padding: 32px 32px;
text-align: center;
}
}
@media screen and (max-width: 414px) {

View File

@ -180,5 +180,30 @@
</section>
</section>
</main>
<footer class="page-footer">
<ul class="footer-icons-ul">
<li class="footer-icon">
<a
href="https://www.instagram.com/patrckreis/?hl=pt-br"
target="_blank"
>
<img src="./assets/Images/insta-icon.png" alt="Ícone instagram" />
</a>
</li>
<li class="footer-icon">
<a href="" target="_blank">
<img src="./assets/Images/face-icon.png" alt="Ícone facebook" />
</a>
</li>
<li class="footer-icon">
<a href="" target="_blank">
<img src="./assets/Images/yt-icon.png" alt="Ícone youtube" />
</a>
</li>
</ul>
<p class="footer-texto">
Copyright © 2020 - Loja Comércio Eletrônico CNPJ: 000.000.000/0001-00
</p>
</footer>
</body>
</html>