feat: Cria artigo inferior desktop
This commit is contained in:
parent
1bacd9061e
commit
689852a6b0
BIN
assets/imgs/bottom-banner-desktop.png
Normal file
BIN
assets/imgs/bottom-banner-desktop.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 358 KiB |
BIN
assets/imgs/bottom-banner-mobile.png
Normal file
BIN
assets/imgs/bottom-banner-mobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 246 KiB |
19
index.html
19
index.html
@ -149,6 +149,25 @@
|
||||
|
||||
</div>
|
||||
|
||||
<article class="bottom-article">
|
||||
<div class="bottom-article-text">
|
||||
<h2 class="bottom-article-title">
|
||||
Lorem ipsum dolor sit amet
|
||||
</h2>
|
||||
|
||||
<p class="bottom-article-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>
|
||||
|
||||
<figure class="bottom-article-figure">
|
||||
<img class="bottom-banner bottom-banner-desktop" src="./assets/imgs/bottom-banner-desktop.png" alt="Banner Inferior Desktop">
|
||||
<img class="bottom-banner bottom-banner-mobile" src="./assets/imgs/bottom-banner-mobile.png" alt="Banner Inferior Mobile">
|
||||
</figure>
|
||||
</article>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -150,8 +150,41 @@ body{
|
||||
width: 85%;
|
||||
}
|
||||
|
||||
.bottom-article{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 50px;
|
||||
margin-bottom: 116px;
|
||||
}
|
||||
|
||||
.bottom-article-text{
|
||||
max-width: 29%;
|
||||
}
|
||||
|
||||
.bottom-article-figure{
|
||||
width: 71%;
|
||||
}
|
||||
|
||||
.bottom-article-title{
|
||||
font-weight: 600;
|
||||
font-size: 32px;
|
||||
line-height: 39px;
|
||||
}
|
||||
|
||||
.bottom-article-description{
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.bottom-banner{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1024px){
|
||||
.main-banner-desktop{
|
||||
.main-banner-desktop,
|
||||
.bottom-banner-desktop{
|
||||
display: none;
|
||||
}
|
||||
|
||||
@ -218,7 +251,8 @@ body{
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1025px){
|
||||
.main-banner-mobile{
|
||||
.main-banner-mobile,
|
||||
.bottom-banner-mobile{
|
||||
display: none;
|
||||
}
|
||||
|
||||
@ -228,7 +262,8 @@ body{
|
||||
}
|
||||
|
||||
@media screen and (min-width: 2500px){
|
||||
.top-infocard-subtitle{
|
||||
.top-infocard-subtitle,
|
||||
.bottom-article-title{
|
||||
font-size: 64px;
|
||||
line-height: 78px;
|
||||
}
|
||||
@ -240,7 +275,8 @@ body{
|
||||
|
||||
.top-infocard-description,
|
||||
.top-card-text,
|
||||
.bottom-card-text{
|
||||
.bottom-card-text,
|
||||
.bottom-article-description{
|
||||
font-size: 32px;
|
||||
line-height: 48px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user