Adiciona os banners pricipais desktop e mobile

This commit is contained in:
Lorena Camila Coelho Máximo 2022-10-12 13:24:35 -04:00
parent b75fefd519
commit e4aae67972
4 changed files with 23 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 KiB

View File

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

View File

@ -16,5 +16,12 @@
<img class="header-logo" src="./assets/images/logoM3.png" alt="Logo M3" />
</a>
</header>
<main>
<section>
<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" />
</section>
</main>
</body>
</html>