Adiciona o banner do meio desktop e mobile

This commit is contained in:
Filipe Quintanilha Evangelista 2022-10-07 15:05:24 -03:00
parent 1bbddcdfb4
commit 097bb6dd31
4 changed files with 13 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 946 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

View File

@ -20,8 +20,10 @@ body{
display: block; display: block;
} }
.main-banner{ .main-banner,
.middle-banner{
width: 100%; width: 100%;
display: block;
} }
.top-infocard{ .top-infocard{
@ -85,8 +87,10 @@ body{
text-align: center; text-align: center;
} }
@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;
} }
} }
@ -135,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

@ -62,6 +62,11 @@
</div> </div>
</section> </section>
<section>
<img class="middle-banner middle-banner-desktop" src="./assets/images/middle-banner-desktop.png" alt="Banner do Meio 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>