Compare commits

..

11 Commits

Author SHA1 Message Date
b8f825aadc Merge pull request 'development' (#12) from development into main
Reviewed-on: #12
2022-10-13 12:22:39 +00:00
7ff596bcad Merge pull request 'hotfix(index): Ajustando conteudo para telas 4k' (#11) from hotfix/Telas4k into development
Reviewed-on: #11
2022-10-13 12:20:32 +00:00
649880fa7f hotfix(index): Ajustando conteudo para telas 4k 2022-10-13 09:18:45 -03:00
7faaa99214 Merge pull request 'feat(index) Adiciona o footer da pagina' (#9) from feature/footer into development
Reviewed-on: #9
2022-10-12 14:55:36 +00:00
9be490fb1a Merge pull request 'feat(index): Adicionado o infocard de baixo' (#8) from feature/bottom-infocard into development
Reviewed-on: #8
2022-10-12 14:19:40 +00:00
21e6456d97 Merge pull request 'feat(index): Adicionado os 4 cards de baixo' (#7) from feature/bottom-cards into development
Reviewed-on: #7
2022-10-11 18:42:41 +00:00
fde2bb1850 Merge pull request 'feat(index): Adicionado os 3 banners do meio desktop e mobile' (#5) from feature/mid-banners into development
Reviewed-on: #5
2022-10-11 18:00:07 +00:00
f8c5fdf5db Merge pull request 'feat(index): Adicionado os 3 primeiros cards de cima desktop e mobile' (#4) from feature/top-cards into development
Reviewed-on: #4
2022-10-10 20:45:26 +00:00
693b22215a Merge pull request 'feat(index): Adicionado o Infocard do topo desktop e mobile' (#3) from feature/top-infocard into development
Reviewed-on: #3
2022-10-10 18:03:33 +00:00
26d13df36a Merge pull request 'feat(index) Adiciona Banner principal desktop e mobile' (#2) from feature/main-banner into development
Reviewed-on: #2
2022-10-10 17:09:52 +00:00
b76c0a3203 Merge pull request 'feat(index): Adiciona header desktop e mobile' (#1) from feature/header into development
Reviewed-on: #1
2022-10-10 16:55:19 +00:00

View File

@ -68,6 +68,7 @@ body{
.top-infocard-image{ .top-infocard-image{
display: block; display: block;
margin-top: 74px; margin-top: 74px;
width: 100%;
} }
/*** TOP CARDS ***/ /*** TOP CARDS ***/
@ -96,6 +97,9 @@ body{
align-items: center; align-items: center;
max-width: 85%; max-width: 85%;
margin: 28px auto; margin: 28px auto;
font-weight: 400;
font-size: 16px;
line-height: 24px;
} }
/*** MID BANNER ***/ /*** MID BANNER ***/
@ -140,7 +144,7 @@ body{
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
margin-top: 108px; margin-top: 108px;
max-width: 70%; width: 100%;
} }
.bottom-infocard-title{ .bottom-infocard-title{
@ -162,6 +166,7 @@ body{
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
width: 100%; width: 100%;
padding: 0 14% 0;
margin-top: 50px; margin-top: 50px;
} }
@ -279,7 +284,6 @@ body{
margin-left: 0; margin-left: 0;
margin-right: 0; margin-right: 0;
max-width: 100%; max-width: 100%;
} }
.bottom-infocard-title{ .bottom-infocard-title{
@ -329,5 +333,56 @@ body{
/*** 2500 px ***/ /*** 2500 px ***/
@media (min-width: 2500px){ @media (min-width: 2500px){
/*** TOP INFOCARD ***/
.top-infocard-subtitle{
font-size: 64px;
line-height: 78px;
}
.top-infocard-title{
font-size: 96px;
line-height: 116px;
}
.top-infocard-description{
font-size: 32px;
line-height: 48px;
}
.top-infocard-image{
width: 470px;
}
/*** CARDS ***/
.card-description{
font-size: 32px;
line-height: 48px;
}
.card-image{
width: 150px;
height: 150px;
}
/*** BOTTOM INFOCARD ***/
.bottom-infocard-title{
font-size: 64px;
line-height: 78px;
}
.bottom-infocard-description{
font-size: 32px;
line-height: 48px;
margin: 0 auto 0;
}
.bottom-infocard{
display: grid;
}
/*** FOOTER ***/
.copyright{
font-size: 20px;
line-height: 24px;
}
} }