Finalizado
This commit is contained in:
parent
b0683202fc
commit
558ce89ca9
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"liveServer.settings.port": 5501
|
||||
}
|
@ -1,239 +1,232 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: inter, sans-serif;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.cabecalho {
|
||||
background-color: #000000;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 29px 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.cabecalho-logo {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.main-image {
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.firts-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.son-section-text {
|
||||
max-width: 776px;
|
||||
}
|
||||
|
||||
.son-subtitle {
|
||||
padding-top: 74px;
|
||||
font-weight: 400;
|
||||
font-size: 32px;
|
||||
line-height: 39px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.son-title {
|
||||
margin-bottom: 28px;
|
||||
font-weight: 500;
|
||||
font-size: 48px;
|
||||
line-height: 58px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.son-description {
|
||||
margin-bottom: 74px;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.son-image {
|
||||
padding-bottom: 178px;
|
||||
}
|
||||
|
||||
.second-section {
|
||||
display: grid;
|
||||
gap: 20px;
|
||||
grid-template-columns: repeat(3, max-content);
|
||||
justify-content: center;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
|
||||
.cousin-section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 35px 26px 26px;
|
||||
background: #ffffff;
|
||||
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
||||
}
|
||||
|
||||
.cousin-image {
|
||||
display: block;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.cousin-text {
|
||||
max-width: 300px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.third-section {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
background: #e0e0e0;
|
||||
gap: 3em;
|
||||
padding: 3em;
|
||||
/* padding: 1em; */
|
||||
}
|
||||
|
||||
.third-section img {
|
||||
width: 100%;
|
||||
translate: 0 62px;
|
||||
}
|
||||
|
||||
/* .third-section-maior {
|
||||
grid-column: 1/3;
|
||||
} */
|
||||
|
||||
.uncle-section-image {
|
||||
bottom: -60px;
|
||||
}
|
||||
|
||||
.middle-image img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.fourth-section {
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
padding: 129px 72px 108px;
|
||||
justify-content: center;
|
||||
gap: 3em;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.nephew-section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 36px 32px 66px;
|
||||
background: #ffffff;
|
||||
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.nephew-image {
|
||||
display: block;
|
||||
margin-bottom: 31px;
|
||||
}
|
||||
|
||||
.nephew-text {
|
||||
max-width: 368px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.fifth-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.niece-section-text {
|
||||
max-width: 550px;
|
||||
}
|
||||
|
||||
.niece-section-text span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.niece-subtitle {
|
||||
padding-top: 108px;
|
||||
font-weight: 600;
|
||||
font-size: 32px;
|
||||
line-height: 39px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.niece-description {
|
||||
padding-bottom: 50px;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.page-footer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 38px 0 41px;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.footer-icons {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.footer-icon {
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
.footer-text {
|
||||
font-size: 10px;
|
||||
line-height: 12px;
|
||||
text-transform: uppercase;
|
||||
color: #bdbdbd;
|
||||
}
|
||||
|
||||
.last-image {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 414px) {
|
||||
|
||||
.main-image-desktop,
|
||||
.middle-image-desktop {
|
||||
display: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 415px) {
|
||||
|
||||
.main-image-mobile,
|
||||
.middle-image-mobile,
|
||||
.last-image-mobile {
|
||||
display: none;
|
||||
|
||||
body {
|
||||
font-family: inter, sans-serif;
|
||||
color: #000000;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1000px) {
|
||||
.niece-section-text span {
|
||||
|
||||
.cabecalho {
|
||||
background-color: #000000;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 29px 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
.cabecalho-logo {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.last-image-desktop {
|
||||
|
||||
.main-image {
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.firts-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.son-section-text {
|
||||
max-width: 776px;
|
||||
}
|
||||
|
||||
.son-subtitle {
|
||||
padding-top: 74px;
|
||||
font-weight: 400;
|
||||
font-size: 32px;
|
||||
line-height: 39px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.son-title {
|
||||
margin-bottom: 28px;
|
||||
font-weight: 500;
|
||||
font-size: 48px;
|
||||
line-height: 58px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.son-description {
|
||||
margin-bottom: 74px;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.son-image {
|
||||
padding-bottom: 178px;
|
||||
}
|
||||
|
||||
.second-section {
|
||||
display: grid;
|
||||
gap: 20px;
|
||||
grid-template-columns: repeat(3, max-content);
|
||||
justify-content: center;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
|
||||
.cousin-section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 35px 26px 26px;
|
||||
background: #ffffff;
|
||||
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
||||
}
|
||||
|
||||
.cousin-image {
|
||||
display: block;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.cousin-text {
|
||||
max-width: 300px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.third-section {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
background: #e0e0e0;
|
||||
gap: 3em;
|
||||
padding: 3em;
|
||||
/* padding: 1em; */
|
||||
}
|
||||
|
||||
.third-section img {
|
||||
width: 100%;
|
||||
translate: 0 62px;
|
||||
}
|
||||
|
||||
/* .third-section-maior {
|
||||
grid-column: 1/3;
|
||||
} */
|
||||
|
||||
.uncle-section-image {
|
||||
bottom: -60px;
|
||||
}
|
||||
|
||||
.middle-image img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.fourth-section {
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
padding: 129px 72px 108px;
|
||||
justify-content: center;
|
||||
gap: 3em;
|
||||
}
|
||||
|
||||
.nephew-section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 36px 32px 66px;
|
||||
background: #ffffff;
|
||||
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.nephew-image {
|
||||
display: block;
|
||||
margin-bottom: 31px;
|
||||
}
|
||||
|
||||
.nephew-text {
|
||||
max-width: 368px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.fifth-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.niece-section-text {
|
||||
max-width: 550px;
|
||||
}
|
||||
|
||||
.niece-section-text span {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.niece-subtitle {
|
||||
padding-top: 108px;
|
||||
font-weight: 600;
|
||||
font-size: 32px;
|
||||
line-height: 39px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.niece-description {
|
||||
padding-bottom: 50px;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.page-footer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 38px 0 41px;
|
||||
background: #000000;
|
||||
}
|
||||
.footer-icons {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.footer-icon {
|
||||
margin: 0 10px;
|
||||
}
|
||||
.footer-text {
|
||||
font-size: 10px;
|
||||
line-height: 12px;
|
||||
text-transform: uppercase;
|
||||
color: #bdbdbd;
|
||||
}
|
||||
|
||||
.last-image {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 414px) {
|
||||
.main-image-desktop,
|
||||
.middle-image-desktop {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 415px) {
|
||||
.main-image-mobile,
|
||||
.middle-image-mobile,
|
||||
.last-image-mobile {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1000px) {
|
||||
.niece-section-text span {
|
||||
display: block;
|
||||
}
|
||||
.last-image-desktop {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
1
challenge-landing-page
Submodule
1
challenge-landing-page
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit ccc1c0b3bef497b69bb277cece65cf87d6375150
|
Loading…
Reference in New Issue
Block a user