forked from M3-Academy/challenge-landing-page
68 lines
1.0 KiB
CSS
68 lines
1.0 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.page-header{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: black;
|
|
}
|
|
|
|
.image-header{
|
|
display: block;
|
|
padding: 28px 0;
|
|
}
|
|
|
|
.main-banner{
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
@media screen and (max-width: 425px){
|
|
.banner-desktop{
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 426px){
|
|
.banner-mobile{
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.infocard{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
padding: 72px 0;
|
|
}
|
|
|
|
.infocard-subtitle{
|
|
font-size: 32px;
|
|
line-height: 39px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.infocard-title{
|
|
font-weight: 500px;
|
|
font-size: 48px;
|
|
line-height: 58px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.infocard-description{
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
max-width: 766px;
|
|
padding: 28px 0 0 0;
|
|
}
|
|
|
|
.infocard-image{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
} |