landing_page-geral #1

Merged
victor_souza merged 9 commits from landing_page-geral into main 2022-10-09 19:50:05 +00:00
3 changed files with 70 additions and 1 deletions
Showing only changes of commit 5991b4c4a9 - Show all commits

Binary file not shown.

After

Width:  |  Height:  |  Size: 447 KiB

View File

@ -89,6 +89,19 @@
</div>
</section>
<section class="bottom-infocard">
<img class="bottom-infocard-image" src="./assest/bottom-inforcard-image.png" alt="Banner do infocard de baixo">
<div class="bottom-infocard-text">
<h2 class="bottom-infocard-title">Lorem ipsum dolor sit amet</h2>
<p class="bottom-infocard-description">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vulputate sapien non libero faucibus interdum. In eget tincidunt ipsum.
Quisque a tellus at lectus blandit tempor. Ut tristique auctor mi eget hendrerit. Curabitur venenatis felis vitae sagittis venenatis.
Donec finibus turpis vitae lectus interdum rutrum vitae sed augue.
</p>
</div>
</section>
</main>
</body>
</html>

View File

@ -1,4 +1,4 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
* {
@ -128,6 +128,33 @@ body {
text-align: center;
}
.bottom-infocard {
display: flex;
align-items: center;
justify-content: center;
padding: 142px 0 180px;
}
.bottom-infocard-image {
margin-right: 40px;
}
.bottom-infocard-text {
max-width: 550px;
}
.bottom-infocard-title {
font-weight: 600;
font-size: 32px;
line-height: 20px;
margin-bottom: 15px;
}
.bottom-infocard-description {
font-size: 16px;
line-height: 24px;
}
@media screen and (max-width: 414px) {
.main-banner-desktop, .middle-banner-desktop {
@ -183,6 +210,26 @@ body {
max-width: 240px;
}
.bottom-infocard {
flex-direction: column;
padding: 90px 0 136px;
}
.bottom-infocard-image {
width: 100%;
margin: 0 0 50px;
max-width: 596px;
}
.bottom-infocard-title {
font-size: 24px;
}
.bottom-infocard-text {
padding: 0 26px;
}
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
@ -203,6 +250,15 @@ body {
max-width: 520px;
margin-right: 70px;
}
.bottom-infocard-image {
max-width: 480px;
}
.bottom-infocard-text {
max-width: 400px;
}
}