Adiciona os cards de baixo desktop e mobile
This commit is contained in:
parent
900a019a7b
commit
e82cf95589
BIN
assest/bottom-card-image-01.png
Normal file
BIN
assest/bottom-card-image-01.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
assest/bottom-card-image-02.png
Normal file
BIN
assest/bottom-card-image-02.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
BIN
assest/bottom-card-image-03.png
Normal file
BIN
assest/bottom-card-image-03.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
BIN
assest/bottom-card-image-04.png
Normal file
BIN
assest/bottom-card-image-04.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
34
index.html
34
index.html
@ -11,7 +11,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<header class="page-header">
|
<header class="page-header">
|
||||||
<a href="/">
|
<a href="/">
|
||||||
<img class="header-logo" src="./assest/Logo M3.png" alt="logo M3">
|
<img class="bottom-card-image" class="header-logo" src="./assest/Logo M3.png" alt="logo M3">
|
||||||
</a>
|
</a>
|
||||||
</header>
|
</header>
|
||||||
<main>
|
<main>
|
||||||
@ -57,6 +57,38 @@
|
|||||||
<img class ="middle-banner middle-banner-mobile" src="./assest/middle-banner-mobile.png" alt="Banner do meio mobile">
|
<img class ="middle-banner middle-banner-mobile" src="./assest/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-image" src="./assest/bottom-card-image-01.png" alt="Imagem do p rimeiro card de Baixo">
|
||||||
|
<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-image" src="./assest/bottom-card-image-02.png" alt="Imagem do segundo card de Baixo">
|
||||||
|
<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-image" src="./assest/bottom-card-image-03.png" alt="Imagem do terceiro card de Baixo">
|
||||||
|
<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-image" src="./assest/bottom-card-image-04.png" alt="Imagem do quarto card de Baixo">
|
||||||
|
<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>
|
81
main.css
81
main.css
@ -91,6 +91,43 @@ body {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.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);
|
||||||
|
justify-content: center;
|
||||||
|
gap: 20px ;
|
||||||
|
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-image {
|
||||||
|
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, .middle-banner-desktop {
|
.main-banner-desktop, .middle-banner-desktop {
|
||||||
@ -98,11 +135,31 @@ 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;
|
||||||
|
padding: 36px 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-card-description {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width:992px) {
|
@media screen and (max-width:992px) {
|
||||||
@ -128,6 +185,19 @@ 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: 769px) and (max-width: 992px) {
|
||||||
|
.bottom-card-description {
|
||||||
|
max-width: 280px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@media screen and (min-width: 993px) and (max-width: 1280px) {
|
@media screen and (min-width: 993px) and (max-width: 1280px) {
|
||||||
.top-infocard-text {
|
.top-infocard-text {
|
||||||
max-width: 520px;
|
max-width: 520px;
|
||||||
@ -135,15 +205,6 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 769px) and (max-width: 1200px) {
|
|
||||||
.top-cards {
|
|
||||||
grid-template-columns: repeat(2, repeat);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@media screen and (min-width:415px) {
|
|
||||||
.main-banner-mobile, .middle-banner-mobile {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user