feat: Cria banner principal desktop e mobile

This commit is contained in:
Saulo Klein Nery 2022-10-11 11:34:09 -03:00
parent 87731f7735
commit 48233489ff
4 changed files with 21 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

@ -19,6 +19,11 @@
<img src="./assets/svgs/m3-logo.svg" alt="Logo da M3">
</a>
</header>
<div>
<img class="main-banner" id="main-banner-desktop" src="./assets/imgs/main-banner-desktop.png" alt="Banner Principal Desktop">
<img class="main-banner" id="main-banner-mobile" src="./assets/imgs/main-banner-mobile.png" alt="Banner Principal Mobile">
</div>
</body>
</html>

View File

@ -13,4 +13,20 @@ img{
justify-content: center;
background: #000000;
padding: 29px 0;
}
.main-banner{
width: 100%;
}
@media screen and (max-width: 1024px){
#main-banner-desktop{
display: none;
}
}
@media screen and (min-width: 1025px){
#main-banner-mobile{
display: none;
}
}