feat(home): section6 concluida.

This commit is contained in:
Luiz Felipe Silva 2022-11-09 15:48:25 -03:00
parent 615c2989a5
commit 2d8694f5f0
2 changed files with 90 additions and 1 deletions

View File

@ -106,6 +106,20 @@
</div>
</div>
</section>
<section class="section6">
<img src="./src/assets/img/programacao.png" alt="Programação">
<div class="text-card">
<h2>Lorem ipsum dolor sit amet</h2>
<p>
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

@ -100,6 +100,10 @@ header {
justify-content: center;
}
.section4 img {
width: 100%;
}
/* SECTION 5 */
.section5 {
@ -137,12 +141,54 @@ header {
line-height: 24px;
}
/* SECTION 6 */
.section6 {
display: flex;
align-items: center;
justify-content: center;
}
.section6 img {
padding: 142px 0 180px;
margin: 0 30px;
}
.text-card p {
max-width: 550px;
font-size: 16px;
line-height: 24px;
flex-wrap: wrap;
}
.text-card h2 {
line-height: 20px;
font-size: 24px;
font-weight: 600;
margin-bottom: 18px;
flex-wrap: wrap;
}
/* RESPONSIVIDADE -> NOTEBOOK */
@media screen and (min-width: 993px) and (max-width: 1280px) {
.container-text {
max-width: 520px;
}
.section6 img {
max-width: 480px;
}
.text-card {
max-width: 400px;
}
.text-card h2 {
font-size: 32px;
line-height: 1;
}
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
@ -157,7 +203,6 @@ header {
}
}
/* RESPONSIVIDADE -> TABLET */
@media screen and (max-width: 992px) {
@ -182,6 +227,32 @@ header {
max-width: 240px;
margin: 67px 0 157px 0;
}
.section6 {
flex-direction: column;
}
.section6 img {
padding: 80px 0 50px 0;
margin: 0 0 50px;
max-width: 596px;
}
.text-card {
padding: 0 26px;
}
.text-card h2 {
font-weight: 600;
font-size: 32px;
line-height: 20px;
}
.text-card p {
font-size: 16px;
line-height: 24px;
margin-bottom: 135px;
}
}
@media screen and (max-width: 768px) {
@ -213,6 +284,10 @@ header {
.card-meio p {
max-width: none;
}
.section6 img {
width: 100%;
}
}
/* RESPONSIVIDADE -> CELULAR */