Adiciona o banner do meio do desktop e mobile

This commit is contained in:
Yan Pecanha Garriga 2022-10-07 20:07:10 -03:00
parent 27f8009880
commit a4457f978f
4 changed files with 12 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 949 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

View File

@ -20,7 +20,9 @@ body {
display: block; display: block;
} }
.main-banner { .main-banner,
.middle-banner {
display: block;
width: 100%; width: 100%;
} }
@ -85,7 +87,8 @@ body {
} }
@media screen and (max-width: 414px) { @media screen and (max-width: 414px) {
.main-banner-desktop { .main-banner-desktop,
.middle-banner-desktop {
display: none; display: none;
} }
} }
@ -136,7 +139,8 @@ body {
} }
@media screen and (min-width: 415px) { @media screen and (min-width: 415px) {
.main-banner-mobile { .main-banner-mobile,
.middle-banner-mobile {
display: none; display: none;
} }
} }

View File

@ -67,6 +67,11 @@
</p> </p>
</div> </div>
</section> </section>
<section>
<img class="middle-banner middle-banner-desktop" src="./assets/images/middle-banner-desktop.png" alt="Banner Meio do Desktop" />
<img class="middle-banner middle-banner-mobile" src="./assets/images/middle-banner-mobile.png" alt="Banner do Meio Mobile" />
</section>
</main> </main>
</body> </body>
</html> </html>