Adiciona os banners principais desktop e mobile

This commit is contained in:
Diego Guilherme Amaral dos Santos 2022-10-11 20:36:18 -03:00
parent 69096bf0d1
commit 99c550e24b
4 changed files with 28 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

View File

@ -8,4 +8,25 @@
justify-content: center;
padding: 28px 0;
background: #000000;
}
.header-logo{
display: block;
}
.main-banner{
width: 100%;
}
@media screen and (max-width: 414px){
.main-banner-desktop{
display: none;
}
}
@media screen and (min-width: 415px) {
.main-banner-mobile{
display: none;
}
}

View File

@ -11,8 +11,14 @@
<body>
<header class="page-header">
<img class="header-logo"src="./assets/images/m3-logo.svg" alt="Logo m3">
<img class="header-logo"src="./assets/images/m3-logo.svg" alt="Logo m3"/>
</header>
<main>
<section>
<img class="main-banner-desktop" src="./assets/images/main-banner-desktop.png" alt="banner principal desktop"/>
<img class="main-banner-mobile" src="./assets/images/main-banner-mobile.png" alt="banner principal mobile"/>
</section>
</main>
</body>
</html>