Adiciona os cards de baixo desktop e mobile
This commit is contained in:
parent
097bb6dd31
commit
82dce69c52
BIN
assets/images/bottom-card-image-01.png
Normal file
BIN
assets/images/bottom-card-image-01.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/images/bottom-card-image-02.png
Normal file
BIN
assets/images/bottom-card-image-02.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/images/bottom-card-image-03.png
Normal file
BIN
assets/images/bottom-card-image-03.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
BIN
assets/images/bottom-card-image-04.png
Normal file
BIN
assets/images/bottom-card-image-04.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
@ -87,6 +87,40 @@ body{
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bottom-cards{
|
||||||
|
margin-top: 140px;
|
||||||
|
background: linear-gradient(180deg, #00C8FF 0%, #15ACD6 100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-cards-wrapper{
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, max-content);
|
||||||
|
gap: 20px;
|
||||||
|
justify-content: center;
|
||||||
|
position: relative;
|
||||||
|
top: -60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-card{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
padding: 36px 32px 66px;
|
||||||
|
background: #FFFFFF;
|
||||||
|
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-card-images{
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 14px;
|
||||||
|
}
|
||||||
|
.bottom-card-description{
|
||||||
|
max-width: 368px;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 24px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@media screen and (max-width: 414px) {
|
@media screen and (max-width: 414px) {
|
||||||
.main-banner-desktop,
|
.main-banner-desktop,
|
||||||
@ -95,11 +129,33 @@ body{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 415px){
|
||||||
|
.main-banner-mobile,
|
||||||
|
.middle-banner-mobile{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 768px) {
|
@media screen and (max-width: 768px) {
|
||||||
.top-cards{
|
.top-cards{
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
padding: 36px 26px;
|
padding: 36px 26px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bottom-cards{
|
||||||
|
margin-top: 114px;
|
||||||
|
padding: 0 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-cards-wrapper{
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-card-description{
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -126,24 +182,21 @@ body{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 993px) and (max-width: 1280px){
|
|
||||||
.top-infocard-text{
|
|
||||||
max-width: 440px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 769px) and (max-width:1200px){
|
@media screen and (min-width: 769px) and (max-width:1200px){
|
||||||
.top-cards{
|
.top-cards{
|
||||||
grid-template-columns: repeat(2, max-content);
|
grid-template-columns: repeat(2, max-content);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 415px){
|
@media screen and (min-width: 769px) and (max-width:992px){
|
||||||
.main-banner-mobile,
|
.bottom-card-description{
|
||||||
.middle-banner-mobile{
|
max-width: 280px;
|
||||||
display: none;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 993px) and (max-width: 1280px){
|
||||||
|
.top-infocard-text{
|
||||||
|
max-width: 440px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
41
index.html
41
index.html
@ -67,6 +67,47 @@
|
|||||||
<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-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" />
|
<img class="middle-banner middle-banner-mobile" src="./assets/images/middle-banner-mobile.png" alt="Banner do Meio Mobile" />
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section class="bottom-cards">
|
||||||
|
<div class="bottom-cards-wrapper">
|
||||||
|
|
||||||
|
<div class="bottom-card">
|
||||||
|
<img class="bottom-card-images" src="./assets/images/bottom-card-image-01.png" alt="imagem do primeiro card inferior" />
|
||||||
|
|
||||||
|
<p class="bottom-card-description">
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="bottom-card">
|
||||||
|
<img class="bottom-card-images" src="./assets/images/bottom-card-image-02.png" alt="imagem do segundo card inferior" />
|
||||||
|
|
||||||
|
<p class="bottom-card-description">
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="bottom-card">
|
||||||
|
<img class="bottom-card-images" src="./assets/images/bottom-card-image-03.png" alt="imagem do terceiro card inferior" />
|
||||||
|
|
||||||
|
<p class="bottom-card-description">
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="bottom-card">
|
||||||
|
<img class="bottom-card-images" src="./assets/images/bottom-card-image-04.png" alt="imagem do quarto card inferior" />
|
||||||
|
|
||||||
|
<p class="bottom-card-description">
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user