challenge-landing-page-thia.../style/main.css

183 lines
2.9 KiB
CSS
Raw Normal View History

2022-10-10 14:52:18 +00:00
.main-banner .banner-img {
display: block;
width: 100%;
}
.main-banner .banner-mobile {
display: none;
}
2022-10-10 16:41:22 +00:00
.main .top-infocard {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
2022-10-10 18:45:26 +00:00
padding: 73px 0 178px;
2022-10-10 16:41:22 +00:00
}
.main .container-infocard-text {
margin-bottom: 73px;
max-width: 766px;
}
.main .infocard-subtitle {
font-size: 32px;
font-weight: 400;
text-align: center;
text-transform: uppercase;
}
.main .infocard-title {
margin-bottom: 28px;
font-size: 48px;
font-weight: 500;
text-transform: uppercase;
text-align: center;
}
.main .infocard-description {
font: 16px;
line-height: 24px;
}
2022-10-10 18:45:26 +00:00
.main .top-cards {
display: grid;
grid-template-columns: repeat(3, max-content);
gap: 21px;
align-items: center;
justify-content: center;
padding-bottom: 80px;
}
.main .top-card {
display: flex;
align-items: center;
flex-direction: column;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
padding: 26px 26px 34px;
background-color: var(--white);
}
.main .card-img {
display: block;
margin-bottom: 26px;
}
.main .card-description {
max-width: 300px;
text-align: center;
line-height: 24px;
font-size: 16px;
2022-10-10 16:41:22 +00:00
}
2022-10-11 12:42:42 +00:00
.main .middle-cards {
background: var(--middlebg-gray);
}
.main .container-middle-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 39px;
justify-content: center;
position: relative;
top: 62px;
margin-bottom: 129px;
padding: 0 72px;
}
.main .middle-card-img {
width: 100%;
}
/* --------------------------------------- */
/* Banner-desktop / Banner-mobile*/
@media (max-width: 720px) {
.main-banner .banner-desktop {
display: none;
}
.main-banner .banner-mobile {
display: block;
}
}
2022-10-10 18:45:26 +00:00
/* Top-infocard */
2022-10-10 16:41:22 +00:00
@media (max-width: 900px) {
.main .top-infocard {
padding: 73px 29px 90px;
}
.main .container-infocard-text {
margin-bottom: 65px;
}
.main .infocard-subtitle {
font-size: 20px;
}
.main .infocard-title {
font-size: 28px;
margin-bottom: 28px;
}
.main .infocard-description {
text-align: center;
}
2022-10-10 18:45:26 +00:00
}
2022-10-10 16:41:22 +00:00
2022-10-10 18:45:26 +00:00
@media (max-width: 414px) {
2022-10-10 16:41:22 +00:00
.main .infocard-img {
max-width: 244px;
width: 100%;
}
}
2022-10-10 18:45:26 +00:00
2022-10-11 12:42:42 +00:00
/* Top-cards */
2022-10-10 18:45:26 +00:00
@media (max-width: 1150px) {
.main .top-cards {
grid-template-columns: repeat(2, 1fr);
padding: 0 26px;
}
.main .card-3 {
grid-column-start: 1;
grid-column-end: 3;
}
}
@media (max-width: 768px) {
.main .top-cards {
grid-template-columns: 1fr;
padding: 36px 26px;
}
}
2022-10-11 12:42:42 +00:00
/* Middle card*/
2022-10-10 18:45:26 +00:00
2022-10-11 12:42:42 +00:00
@media (max-width: 768px) {
.main .middle-cards {
margin-top: 44px;
2022-10-10 18:45:26 +00:00
}
2022-10-11 12:42:42 +00:00
.main .container-middle-cards {
grid-template-columns: repeat(2, 1fr);
column-gap: 14px;
margin-bottom: 80px;
top: 32px;
row-gap: 24px;
padding: 0 23px;
}
.main .middle-banner:last-child {
grid-column-end: span 2;
}
}
@media (max-width: 480px) {
.main .second-img-banner {
grid-area: 1/1;
2022-10-10 18:45:26 +00:00
}
}