Adiciona os banners principais desktop e mobile

This commit is contained in:
Rhayllon Daudt 2022-10-10 00:35:06 -03:00
parent c8161c54c6
commit 8d5d1f99ad
4 changed files with 26 additions and 1 deletions

View File

@ -16,4 +16,20 @@
.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;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

View File

@ -14,8 +14,17 @@
<body>
<header class="header-page">
<a href="/">
<img class="header-logo" src="./assets/images/Logo M3.svg" alt="Logo M3">
<img class="header-logo" src="./assets/images/logo M3.svg" alt="Logo M3">
</a>
</header>
<main>
<div>
<figure>
<img class="main-banner main-banner-desktop" src="./assets/images/main-banner-desktop.png" alt="Banner computador" />
<img class="main-banner main-banner-mobile" src="./assets/images/main-banner-mobile.png" alt="Banner computador" />
</figure>
</div>
</main>
</body>
</html>