feature/footer - Projeto Finalizado #2

Merged
josecarloslins merged 10 commits from feature/footer into main 2022-10-11 00:42:27 +00:00
4 changed files with 24 additions and 0 deletions
Showing only changes of commit 91e1a57ed2 - Show all commits

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 KiB

View File

@ -15,3 +15,22 @@
.header-logo {
display: block;
}
.main-banner {
width: 100%;
display: block;
}
/* RESPONSIVIDADE */
@media screen and (max-width: 414px) {
.main-banner-desktop {
display: none;
}
}
@media screen and (min-width: 415px) {
.main-banner-mobile, .middle-banner-mobile {
display: none;
}
}

View File

@ -16,5 +16,10 @@
<img class="header-logo" src="./assets/images/logo-m3academy.png" />
</a>
</header>
<div>
<img class="main-banner main-banner-desktop" src="./assets/images/main-banner-desktop.png" alt="Banner Principal Desktop" />
<img class="main-banner main-banner-mobile" src="./assets/images/main-banner-mobile.png" alt="Banner Principal Mobile" />
</div>
</body>
</html>