116 lines
2.1 KiB
CSS
116 lines
2.1 KiB
CSS
.favorites-page {
|
|
margin-top: 18px;
|
|
margin-bottom: 80px;
|
|
}
|
|
|
|
.favorites-hero {
|
|
margin-bottom: 28px;
|
|
padding: 30px 32px;
|
|
border: 1px solid rgba(54, 33, 62, 0.12);
|
|
background:
|
|
/*radial-gradient(circle at top right, rgba(184, 243, 255, 0.55) 0, rgba(184, 243, 255, 0) 34%),*/
|
|
linear-gradient(180deg, rgba(99, 118, 141, 0.07) 0%, rgba(99, 118, 141, 0.12) 100%);
|
|
}
|
|
|
|
.favorites-kicker {
|
|
font-size: 16px;
|
|
line-height: 1.2;
|
|
color: #63768d;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.favorites-hero__row {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
gap: 24px;
|
|
}
|
|
|
|
.favorites-title {
|
|
font-size: 50px;
|
|
line-height: 1.05;
|
|
color: #36213e;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.favorites-description {
|
|
max-width: 680px;
|
|
margin-top: 14px;
|
|
color: #554971;
|
|
font-size: 18px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.favorites-counter {
|
|
flex: 0 0 auto;
|
|
min-width: 130px;
|
|
padding: 16px 20px;
|
|
border: 1px solid rgba(54, 33, 62, 0.12);
|
|
background: rgba(255, 255, 255, 0.72);
|
|
text-align: center;
|
|
}
|
|
|
|
.favorites-counter__value {
|
|
display: block;
|
|
color: #36213e;
|
|
font-family: var(--font-logo);
|
|
font-size: 44px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.favorites-counter__label {
|
|
display: block;
|
|
margin-top: 6px;
|
|
color: #63768d;
|
|
font-size: 15px;
|
|
line-height: 1.2;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.favorites-list .items-grid {
|
|
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.favorites-page {
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
margin-bottom: 64px;
|
|
}
|
|
|
|
.favorites-hero {
|
|
padding: 24px 20px;
|
|
}
|
|
|
|
.favorites-title {
|
|
font-size: 38px;
|
|
}
|
|
|
|
.favorites-description {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.favorites-hero__row {
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 520px) {
|
|
.favorites-page {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.favorites-title {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.favorites-counter {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|