forked from M3-Academy/practice-time-landing-page
111 lines
1.7 KiB
CSS
111 lines
1.7 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
color: #000000;
|
|
}
|
|
|
|
.page-header {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 28px 0;
|
|
background: #000000;
|
|
}
|
|
|
|
.header-logo {
|
|
display: block;
|
|
}
|
|
|
|
.main-banner{
|
|
width: 100%;
|
|
}
|
|
|
|
.top-infocard {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 80px 0 96px;
|
|
}
|
|
|
|
.top-infocard-text {
|
|
max-width: 40%;
|
|
margin-right: 124px;
|
|
}
|
|
|
|
.top-infocard-subtitle {
|
|
text-transform: uppercase;
|
|
font-size: 32px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.top-infocard-title {
|
|
margin-bottom: 24px;
|
|
text-transform: uppercase;
|
|
font-size: 48px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.top-infocard-description {
|
|
line-height: 24px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
.main-banner-desktop {
|
|
display: none;
|
|
}
|
|
|
|
.top-infocard {
|
|
flex-direction: column;
|
|
padding: 84px 0 158px;
|
|
}
|
|
|
|
.top-infocard-text {
|
|
max-width: 85%;
|
|
margin: 0 0 68px;
|
|
}
|
|
|
|
.top-infocard-subtitle {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.top-infocard-title {
|
|
margin-bottom: 20px;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.top-infocard-image {
|
|
width: 100%;
|
|
max-width: 240px;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1025px) {
|
|
.main-banner-mobile {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 2500px) {
|
|
.top-infocard-subtitle {
|
|
font-size: 64px;
|
|
}
|
|
|
|
.top-infocard-title {
|
|
font-size: 96px;
|
|
}
|
|
|
|
.top-infocard-description {
|
|
line-height: 48px;
|
|
font-size: 32px;
|
|
}
|
|
|
|
.top-infocard-image {
|
|
width: 100%;
|
|
min-width: 800px;
|
|
}
|
|
} |