Adicione os banners principais desktop e mobile

This commit is contained in:
Manuela Luana Schumacker Tavares 2022-10-07 15:23:06 -03:00
parent 5c517a7dd4
commit 0fde066584
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: 332 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/m3-logo.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>