Adiciona os banners principais desktop e mobile

This commit is contained in:
Eleonora Otz de Mendonça Soares 2022-10-07 14:14:46 -03:00
parent f1c99b3aaa
commit a444959296
4 changed files with 24 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 KiB

View File

@ -13,4 +13,20 @@
.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

@ -17,5 +17,12 @@
<img class="header-logo" src="./assets/images/Logo-m3.png" alt="Logo M3" />
</a>
</header>
<main>
<section>
<img class="main-banner main-banner-desktop" src="./assets/images/main-banner-desktop.png" alt="Main Banner" />
<img class="main-banner main-banner-mobile" src="./assets/images/main-banner-mobile.png" alt="Main Banner" />
</section>
</main>
</body>
</html>