Adiciona os cards do topo desktop e mobile
This commit is contained in:
parent
35a402a97e
commit
633b3b943a
BIN
assets/images/top-card-image01.png
Normal file
BIN
assets/images/top-card-image01.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/images/top-card-image02.png
Normal file
BIN
assets/images/top-card-image02.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
BIN
assets/images/top-card-image03.png
Normal file
BIN
assets/images/top-card-image03.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
23
index.html
23
index.html
@ -39,6 +39,29 @@
|
||||
|
||||
<img class="top-infocard-image" src="./assets/images/top-infocard-image.png" alt="Banner do Infocard topo">
|
||||
</section>
|
||||
|
||||
<section class="top-cards">
|
||||
<div class="top-card">
|
||||
<img class="top-card-image" src="./assets/images/top-card-image01.png" alt="Imagem do Primeiro Card do Topo">
|
||||
<p class="top-card-description">Lorem ipsum dolor sit amet,
|
||||
consectetur adipiscing elit.
|
||||
Cras euismod enim non dui fringilla interdum. </p>
|
||||
</div>
|
||||
|
||||
<div class="top-card">
|
||||
<img class="top-card-image" src="./assets/images/top-card-image02.png" alt="Imagem do Primeiro Card do Topo">
|
||||
<p class="top-card-description">Lorem ipsum dolor sit amet,
|
||||
consectetur adipiscing elit.
|
||||
Cras euismod enim non dui fringilla interdum. </p>
|
||||
</div>
|
||||
|
||||
<div class="top-card">
|
||||
<img class="top-card-image" src="./assets/images/top-card-image03.png" alt="Imagem do Primeiro Card do Topo">
|
||||
<p class="top-card-description">Lorem ipsum dolor sit amet,
|
||||
consectetur adipiscing elit.
|
||||
Cras euismod enim non dui fringilla interdum. </p>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
</body>
|
||||
|
@ -57,12 +57,51 @@ body{
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.top-cards{
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, max-content);
|
||||
gap: 20px;
|
||||
justify-content: center;
|
||||
padding: 74px 0;
|
||||
background: #F0F0F0;
|
||||
}
|
||||
|
||||
.top-card{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 36px 26px 28px;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
||||
}
|
||||
|
||||
.top-card-image{
|
||||
display: block;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
|
||||
.top-card-description{
|
||||
max-width: 300px;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 414px){
|
||||
.main-banner-desktop{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px){
|
||||
.top-cards{
|
||||
grid-template-columns: 1fr;
|
||||
padding: 36px 26px;
|
||||
gap: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 992px){
|
||||
.top-infocard{
|
||||
flex-direction: column;
|
||||
@ -96,6 +135,12 @@ body{
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 769px) and (max-width: 1200px) {
|
||||
.top-cards{
|
||||
grid-template-columns: repeat(2, max-content);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 415px){
|
||||
.main-banner-mobile{
|
||||
display: none;
|
||||
|
Loading…
x
Reference in New Issue
Block a user