Spaces:
Sleeping
Sleeping
File size: 894 Bytes
036b3a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
:root {
--cards: 3;
--cardTopPadding: 6rem;
--cardsHeaderBottomPadding: 24rem;
--cardsSectionGap: 2rem;
--cardMargin: 2rem;
--cardsSectionPaddingBottom: calc(
calc(var(--cards) - 1) * var(--cardTopPadding)
);
--cardsHeaderBottomStop: 448px;
}
#stacked-cards {
list-style: none;
padding-left: 0;
gap: var(--cardMargin);
padding-bottom: calc(calc(var(--cards) - 1) * var(--cardTopPadding));
display: flex;
flex-direction: column;
}
#stacked-cards > div:nth-child(1) {
--index: 0;
}
#stacked-cards > div:nth-child(2) {
--index: 1;
}
#stacked-cards > div:nth-child(3) {
--index: 2;
}
#stacked-cards > div {
transform-origin: bottom;
position: sticky;
top: 0;
}
@media screen and (max-width: 1024px) {
:root {
--cardTopPadding: 3rem;
--cardsHeaderBottomPadding: 10rem;
--cardsSectionGap: 4rem;
--cardsHeaderBottomStop: 272px;
}
}
|