You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

card.scss 284B

123456789101112131415161718
  1. $n: 100;
  2. $cardbase: 2px;
  3. $cardtop: -1px;
  4. $index: 9999;
  5. @for $i from 0 through $n {
  6. .swipe:nth-child(#{$i}) {
  7. position: absolute;
  8. left: calc($cardbase * $i);
  9. top: calc($cardtop * $i);
  10. z-index: calc($index - $i);
  11. }
  12. }
  13. .swipe .card h3 {
  14. color: blue!important;
  15. }