feature/landingPage #1

Merged
cainamilech merged 14 commits from feature/landingPage into main 2022-10-12 22:14:24 +00:00
4 changed files with 25 additions and 0 deletions
Showing only changes of commit 31ae4022e8 - Show all commits

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 KiB

View File

@ -15,3 +15,20 @@
display: block;
}
.main-banner{
width: 100%;
display: block;
}
@media screen and (max-width: 414px) {
.banner-main-desktop{
display: none;
}
}
@media screen and (min-width: 415px) {
.banner-main-mobile{
display: none;
}
}

View File

@ -15,5 +15,13 @@
<img class="logo-header" src="/assets/images/logo-m3.svg" alt="Logo M3 Academy" />
</a>
</header>
<main>
<div>
<img class="main-banner banner-main-desktop" src="/assets/images/banner-top-desktop.png" alt="Banner principal desktop">
<img class="main-banner banner-main-mobile" src="/assets/images/banner-top-mobile.png" alt="Banner principal mobile">
</div>
</main>
</body>
</html>