challengelandingpageMarcosG.../desafio.css

152 lines
2.3 KiB
CSS
Raw Normal View History

2022-10-12 16:23:48 +00:00
*{
margin: 0;
padding: 0;
box-sizing:border-box;
}
2022-10-12 18:38:36 +00:00
body{
font-family: 'inter', sans-serif;
color: #000000;
}
2022-10-12 16:23:48 +00:00
.pageheader{
background-color: #000000;
height: 101px;
width: 100%;
display: flex;
justify-content: center;
padding: 29px;}
.imageheader{
justify-content: center;
}
.main-bannermobile{
width: 100%;
}
.main-banner{
width: 100%;
}
2022-10-12 18:38:36 +00:00
.infocard1{
display: flex;
align-items: center;
flex-direction: column;
margin: 88px;
text-align: center;
2022-10-12 18:38:36 +00:00
}
.infocard-text{
display: flex;
align-items: center;
flex-direction: column;
max-width: 766px;
}
.infocard-text1{
text-transform: uppercase;
font-size: 32px;
font-weight: 400;
font-family: 'inter';
}
.infocard-text2{
font-family: 'inter';
font-style: normal;
line-height: 58px;
font-size: 48px;
font-weight: 500;
text-transform: uppercase;
margin: 0;
}
.infocard-text3{
text-align: center;
2022-10-12 18:38:36 +00:00
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
margin-bottom: 73px;
padding: 25px;
}
.infocard-image {
display: flex;
}
.quadradinhos{
justify-content: center;
display: flex;
flex-direction: row;
gap: 21px;
text-align: center;
}
.quadradinhoimage{
padding: 36px 124px;
}
.quadradinho1{
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
width: 350px;
height: 287px;
}
.quadradinho2{
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
width: 350px;
height: 287px;
}
.quadradinho3{
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
width: 350px;
height: 287px;
}
2022-10-12 18:38:36 +00:00
2022-10-12 16:23:48 +00:00
@media (max-width:414px) {
.main-banner{
display: none;
}
2022-10-12 18:38:36 +00:00
.infocard-image{
display: none;
}
.infocard-text1{
margin: 0;
font-size: 20px;
line-height: 24px;
}
.infocard-text2{
font-size: 28px;
line-height: 34px;
width: 235px;
}
.infocard-text3{
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;}
2022-10-12 18:38:36 +00:00
}
2022-10-12 16:23:48 +00:00
@media (min-width:415px) {
.main-bannermobile{
display: none;
}
2022-10-12 18:38:36 +00:00
.infocard-imagemobile{
display: none;
}
}