feature/section1 #2

Merged
luizfelipe9627 merged 2 commits from feature/section1 into main 2022-10-13 17:15:12 +00:00
2 changed files with 24 additions and 0 deletions

View File

@ -16,5 +16,10 @@
<img src="./src/assets/svg/logo.svg" alt="M3 Academy">
</a>
</header>
<section class="section1">
<img class="fundo-desktop" src="./src/assets/img/fundo-desktop.png" alt="Notebook na mesa">
<img class="fundo-mobile" src="./src/assets/img/fundo-mobile.png" alt="Notebook na mesa">
</section>
</body>
</html>

View File

@ -17,4 +17,23 @@ header {
header a {
width: 11%;
}
/* SECTION 1 */
.section1 img {
width: 100%;
height: 36%;
}
@media screen and (max-width: 425px) {
.fundo-desktop {
display: none;
}
}
@media screen and (min-width: 426px) {
.fundo-mobile {
display: none;
}
}