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.
| 123456789101112131415161718 |
- $n: 100;
- $cardbase: 2px;
- $cardtop: -1px;
- $index: 9999;
-
- @for $i from 0 through $n {
- .swipe:nth-child(#{$i}) {
- position: absolute;
- left: calc($cardbase * $i);
- top: calc($cardtop * $i);
- z-index: calc($index - $i);
- }
- }
-
-
- .swipe .card h3 {
- color: blue!important;
- }
|