feat: Cria banner principal desktop e mobile
This commit is contained in:
parent
87731f7735
commit
48233489ff
BIN
assets/imgs/main-banner-desktop.png
Normal file
BIN
assets/imgs/main-banner-desktop.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/imgs/main-banner-mobile.png
Normal file
BIN
assets/imgs/main-banner-mobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 332 KiB |
@ -19,6 +19,11 @@
|
|||||||
<img src="./assets/svgs/m3-logo.svg" alt="Logo da M3">
|
<img src="./assets/svgs/m3-logo.svg" alt="Logo da M3">
|
||||||
</a>
|
</a>
|
||||||
</header>
|
</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>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -14,3 +14,19 @@ img{
|
|||||||
background: #000000;
|
background: #000000;
|
||||||
padding: 29px 0;
|
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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user