feat(home): adiciona os banners desktop e mobile

This commit is contained in:
Gabriel Ferraz Nogueira 2022-10-07 15:54:52 -03:00
parent 16d3c4d9c8
commit 90ac375a66
4 changed files with 22 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

@ -14,4 +14,20 @@
.header-logo{
display: block;
}
.main-banner{
max-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,11 @@
</a>
</header>
<main>
<section>
<img class="main-banner main-banner-desktop" src="./assets/images/Main-banner-desktop.png" alt="Main-banner-desktop"/>
<img class="main-banner main-banner-mobile" src="./assets/images/Main-banner-mobile.png" alt="Main-banner-mobile"/>
</section>
</main>
</body>
</html>