forked from M3-Academy/practice-time-landing-page
Cria cards do topo desktop e mobile
This commit is contained in:
parent
c4260ccbb3
commit
183ac11346
BIN
assets/imagens/top-infocard-image1.png
Normal file
BIN
assets/imagens/top-infocard-image1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/imagens/top-infocard-image2.png
Normal file
BIN
assets/imagens/top-infocard-image2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
BIN
assets/imagens/top-infocard-image3.png
Normal file
BIN
assets/imagens/top-infocard-image3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
@ -40,7 +40,7 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
/* Cria top infocard */
|
||||
/* Cria top infocard desktop e mobile */
|
||||
.top-infocard {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@ -101,4 +101,48 @@ body {
|
||||
max-width: 520px;
|
||||
margin-right: 70px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Cria cards topo desktop e mobile*/
|
||||
.top-cards {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, max-content);
|
||||
gap: 20px;
|
||||
justify-content: center;
|
||||
padding: 74px 0;
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
|
||||
.top-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 26px 26px 34px;
|
||||
background-color: #fff;
|
||||
box-shadow: 8px 4px 20px rgba(0, 0, 0, 0.23);
|
||||
}
|
||||
|
||||
.top-card-image {
|
||||
display: block;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
|
||||
.top-card-description {
|
||||
max-width: 300px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.top-cards {
|
||||
grid-template-columns: 1fr;
|
||||
padding: 36px 26px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 769px) and (max-width: 1200px) {
|
||||
.top-cards {
|
||||
grid-template-columns: repeat(2, max-content);
|
||||
}
|
||||
}
|
29
index.html
29
index.html
@ -28,7 +28,7 @@
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<!--Cria top infocard-->
|
||||
<!--Cria top infocard desktop e mobile-->
|
||||
<section class="top-infocard">
|
||||
<div class="top-infocard-text">
|
||||
<h2 class="top-infocard-subtitle">Lorem ipsum</h2>
|
||||
@ -41,6 +41,33 @@
|
||||
|
||||
<img class="top-infocard-image" src="assets/imagens/top-infocard-image.png" alt="Banner do Infocard do Topo" />
|
||||
</section>
|
||||
|
||||
<!--Cria cards topo desktop e mobile-->
|
||||
<section class="top-cards">
|
||||
<div class="top-card">
|
||||
<img class="top-card-image" src="assets/imagens/top-infocard-image1.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/imagens/top-infocard-image2.png" alt="Imagem do Segundo 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/imagens/top-infocard-image3.png" alt="Imagem do Terceiro 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>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user