challenge-landing-page-Adil.../Arquivos Usados/Css/Landing Page - Adilson Fernando Neves Ornellas.css

317 lines
5.6 KiB
CSS
Raw Normal View History

2022-10-09 12:55:41 +00:00
/*Toda a Page*/
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
2022-10-09 19:23:37 +00:00
2022-10-09 12:55:41 +00:00
/*Cabeçario*/
header{
background: black;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 29px 0px;
}
.logom3{
display:block;
}
2022-10-09 17:08:35 +00:00
2022-10-10 14:15:07 +00:00
/*Parte01, o banner principal*/
2022-10-09 17:08:35 +00:00
.imgbanner{
display: block;
width: 100%;
}
2022-10-10 14:15:07 +00:00
.imgbannerpq{
display: none;
}
/*Parte2,Parte2, escrito com imagem dos 3 computador*/
2022-10-09 19:23:37 +00:00
.parte2{
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.tdtextopart2{
width: 40%;
padding: 73px 0px 0px;
display: flex;
flex-direction: column;
align-items:center ;
}
.subtitlepart2{
font-family: 'Inter';
font-weight: 400;
font-size: 32px;
line-height: 39px;
text-transform: uppercase;
color: #000000;
}
.titlepart2{
font-family: 'Inter';
font-weight: 500;
font-size: 48px;
line-height: 58px;
text-transform: uppercase;
color: #000000;
}
.paragpart2{
padding: 28px 0px 0px;
font-family: 'Inter';
font-weight: 400;
font-size: 16px;
line-height: 24px;
color: #000000;
}
.imgparte2{
display: block;
padding: 73px 0px 0px;
}
2022-10-09 17:08:35 +00:00
2022-10-10 14:15:07 +00:00
/*Parte3, os 3 caixotes*/
.tdscaixotes{
display: grid;
2022-10-10 15:37:44 +00:00
grid-template-columns: repeat(3, 1fr);
2022-10-10 14:15:07 +00:00
gap: 21px;
justify-content: center;
background: #FFFFFF;
2022-10-10 15:37:44 +00:00
padding: 178px 414px 80px;
2022-10-10 14:15:07 +00:00
}
.cadacaixote{
display: flex;
flex-direction: column;
align-items: center;
2022-10-10 17:33:06 +00:00
width: 350px;
2022-10-10 14:15:07 +00:00
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
}
.imgcaixote{
2022-10-10 15:37:44 +00:00
padding: 46px 0px 38px;
2022-10-10 14:15:07 +00:00
display: block;
}
.legendcaixote{
padding: 0px 25px 28px;
font-family: 'Inter';
font-weight: 400;
font-size: 16px;
line-height: 24px;
text-align: center;
color: black;
}
2022-10-09 17:08:35 +00:00
2022-10-10 14:15:07 +00:00
/*Parte4, imagens notebook*/
2022-10-10 17:25:14 +00:00
.parte4{
padding: 0px 72px 62px;
background:#E0E0E0; ;
display: grid;
grid-template-columns: auto auto auto;
gap: 39px;
2022-10-09 17:08:35 +00:00
2022-10-10 17:25:14 +00:00
}
.imgparte4{
display: block;
width: 100%;
position: relative;
top: 124px;
}
2022-10-09 17:08:35 +00:00
2022-10-10 17:33:06 +00:00
/*Parte5-mais caixotes*/
2022-10-10 22:59:33 +00:00
.caixotes2{
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
justify-content: center;
background: #FFFFFF;
padding: 192px 72px 0px;
}
.cdcaixote2{
display: flex;
flex-direction: column;
align-items: center;
background: #FFFFFF;
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
}
.imgcaixote2{
padding: 35px 0px 15px;
display: block;
}
.legendcaixote2{
padding: 0px 32px 65px;
font-family: 'Inter';
font-weight: 400;
font-size: 16px;
line-height: 24px;
text-align: center;
color: #000000;
}
2022-10-10 23:27:05 +00:00
/*Parte6-texto com imagem final*/
.parte06{
2022-10-11 12:39:16 +00:00
padding: 108px 280px 244px;
2022-10-10 23:27:05 +00:00
display: flex;
2022-10-11 12:39:16 +00:00
flex-direction:column;
2022-10-10 23:27:05 +00:00
align-items: center;
justify-content: center;
}
.tdtextpart6{
padding: 108px 0px 50px;
2022-10-11 12:39:16 +00:00
width: 40%;
text-align: center;
2022-10-10 23:27:05 +00:00
}
.titlepart6{
font-family: 'Inter';
font-weight: 600;
font-size: 32px;
line-height: 39px;
color: #000000;
}
.paragrafpart6{
font-family: 'Inter';
font-weight: 400;
font-size: 16px;
line-height: 24px;
color: #000000;
}
.imgparte6{
display: block;
}
.imgparte06pq{
display: none;
}
2022-10-11 12:39:16 +00:00
/*Parte7-final*/
2022-10-10 22:59:33 +00:00
@media screen and (min-width: 2500){
}
2022-10-10 17:33:06 +00:00
2022-10-09 17:08:35 +00:00
2022-10-09 12:55:41 +00:00
/*Modificações para os Varios tamanhos de tela */
2022-10-09 19:23:37 +00:00
@media screen and (max-width: 1024px)
{
2022-10-10 14:15:07 +00:00
/*Parte01, o banner principal*/
.imgbanner{
display: none;
}
2022-10-09 19:23:37 +00:00
2022-10-10 14:15:07 +00:00
.imgbannerpq{
display: block;
width: 100%;
}
/*Parte 02*,Parte2, escrito com imagem dos 3 computador*/
2022-10-09 19:23:37 +00:00
.tdtextopart2{
width: 86%;
text-align: center;
}
.subtitlepart2{
font-size: 20px;
line-height: 24px;
text-align: center;
}
.titlepart2{
font-size: 28px;
line-height: 34px;
text-align: center;
}
.paragpart2{
padding: 1px 0px 0px;
font-family: 'Inter';
font-weight: 400;
font-size: 16px;
line-height: 24px;
color: #000000;
}
.imgparte2{
display: block;
padding: 65px 0px 0px;
2022-10-10 14:15:07 +00:00
width: 240px;
2022-10-09 19:23:37 +00:00
}
2022-10-10 14:15:07 +00:00
/*Parte3,os 3 caixotes*/
2022-10-10 15:37:44 +00:00
.tdscaixotes{
grid-template-columns: 1fr;
gap: 24px;
padding: 90px 32px 80px;
}
.cadacaixote{
width: 99%;
}
.imgcaixote{
padding: 46px 0px 38px;
display: block;
}
2022-10-10 14:15:07 +00:00
/*Parte4, imagens notebook*/
2022-10-10 17:25:14 +00:00
.parte4{
grid-template-areas: "img2 img1"
"img3 img3";
padding: 0px 64px 32px;
background:#E0E0E0; ;
display: grid;
grid-template-columns: repeat(2, 1fr);
column-gap: 14px;
row-gap: 23px;
}
.imgparte4{
top: 64px;
}
.img1{
grid-area: img1;
}
.img2{
grid-area: img2;
}
.img3{
grid-area: img3;
}
2022-10-10 17:33:06 +00:00
/*Parte5-mais caixotes*/
2022-10-10 22:59:33 +00:00
.caixotes2{
grid-template-columns: 1fr;
gap: 16px;
padding: 112px 23px 98px;
}
.cdcaixote2{
width: 100%;
}
.imgcaixote2{
padding: 35px 0px 15px;
display: block;
}
.legendcaixote2{
font-size: 14px;
}
2022-10-10 23:27:05 +00:00
/*Parte6-texto com imagem final*/
2022-10-11 12:39:16 +00:00
.parte06{
padding: 0px 0px 87px;
flex-direction: column-reverse;
}
.tdtextpart6{
padding: 50px 0px 0px;
width: 84%;
}
.titlepart6{
font-size: 24px;
line-height: 29px;
}
.imgparte6{
display: none;
}
.imgparte06pq{
display: block;
}
/*Parte7-final*/
2022-10-10 23:27:05 +00:00
2022-10-10 17:25:14 +00:00
}