bug nos cards

This commit is contained in:
Robson Tito de Paula Ferreira 2022-10-13 19:56:35 -03:00
parent 555ffda00f
commit 63e162c0d6
8 changed files with 66 additions and 8 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 950 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -22,18 +22,18 @@ body {
.main-banner {
width: 100%;
margin-bottom: 73px;
}
.top-infocard {
display: flex;
width: 100%;
flex-direction: column;
align-items: center;
flex-direction: column;
text-align: center;
}
.top-infocard-text {
max-width: 766px;
}
@ -42,8 +42,7 @@ body {
line-height: 39px;
font-weight: 400;
font-size: 32px;
margin-top: 10px;
margin-bottom: 5px;
margin-top: 28px;
}
.top-infocard-title {
@ -51,23 +50,52 @@ body {
font-weight: 500;
line-height: 58px;
font-size: 48px;
margin-bottom: 10px;
margin-bottom: 28px;
}
.top-infocard-discription {
font-weight: 400;
font-size: 64px;
line-height: 24px;
font-size: 16px;
text-align: justify;
}
.top-infocard-image {
margin-top: 20px;
margin-top: 73px;
}
.top-images-cards-section {
display: flex;
width: 100%;
grid-template-columns: repeat(3, max-content);
justify-content: center;
gap: 20px;
background: #f0f0f0;
}
.top-card-image {
display: flex;
flex-direction: column;
background: #FFFFFF;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
}
.top-card-image-png {
display: block;
margin-bottom: 26px;
}
.top-card-discription {
max-width: 300px;
line-height: 24px;
text-align: center;
font-size: 16px;
}
@media screen and (max-width:414px) {
.main-banner-desktop {
display: none;
padding: 84px 30px 158px;
}
}

View File

@ -39,6 +39,36 @@
<img class="top-infocard-image" src="./assets/images/png/top-infocard-image.png" alt="Banner do infocard topo">
</section>
<section class="top-images-cards-section">
<div class="top-card-image">
<figure>
<img class="top-card-image-png" src="/assets/images/png/top-card-image-01.png" alt="Imagem shopping">
<p class="top-card-description">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
</p>
</figure>
</div>
<div class="top-card-image">
<figure>
<img class="top-card-image-png" src="/assets/images/png/top-card-image-02.png" alt="Imagem Bolsa">
<p class="top-card-description">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
</p>
</figure>
</div>
<div class="top-card-image">
<figure>
<img class="top-card-image-png" src="/assets/images/png/top-card-image-03.png" alt="Imagem Moeda">
<p class="top-card-description">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
</p>
</figure>
</div>
</section>
</main>
</body>
</html>