forked from M3-Academy/challenge-landing-page
marcellomartins #1
BIN
assets/images/banner-1-desktop.png
Normal file
BIN
assets/images/banner-1-desktop.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/images/banner-1-mobile.png
Normal file
BIN
assets/images/banner-1-mobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 332 KiB |
@ -15,6 +15,11 @@
|
||||
<img class= "logo-m3" src="./assets/images/Logo-M3Academy 1.png" alt="Logo M3" />
|
||||
</a>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<img class= "banner-1-desktop" src="./assets/images/banner-1-desktop.png" alt="laptop com codigos na tela" />
|
||||
<img class= "banner-1-mobile" src="./assets/images/banner-1-mobile.png" alt="laptop com codigos na tela">
|
||||
</section>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -3,6 +3,7 @@
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
header {
|
||||
align-items: center;
|
||||
height: 101px;
|
||||
@ -10,4 +11,23 @@ header {
|
||||
justify-content: center;
|
||||
background: black;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.banner-1-desktop {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.banner-1-mobile {
|
||||
width: 100%;
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1024px) {
|
||||
.banner-1-desktop {
|
||||
display: none;
|
||||
}
|
||||
.banner-1-mobile {
|
||||
display: unset;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user