feat: Adiciona banner principal desktop e mobile

This commit is contained in:
Filipe Quintanilha Evangelista 2022-10-10 19:51:27 -03:00
parent 978b1964dc
commit 268fa8a0cb
4 changed files with 28 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,24 @@
.header-logo{
display: block;
}
.main-banner{
width: 100%;
display: block;
}
/* BREAKPOINTS */
@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,13 @@
</a>
</header>
<main>
<figure>
<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">
</figure>
</main>
</body>
</html>