Created
January 17, 2014 17:43
-
-
Save mturjak/8477903 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.2.13) | |
| // Compass (v0.12.2) | |
| // ---- | |
| $carouselContent : "carousel-content-1" "buying_carousel_image_1.jpg"; | |
| @mixin do_carousel($carousel) { | |
| $baseClass: nth($carousel, 1); | |
| $image: nth($carousel, 2); | |
| .#{$baseClass} { | |
| test: $image; | |
| } | |
| } | |
| @if (type-of(nth($carouselContent,1)) == list) { | |
| @each $carousel in $carouselContent { | |
| @include do_carousel($carousel); | |
| } | |
| } @else { | |
| @include do_carousel($carouselContent); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .carousel-content-1 { | |
| test: "buying_carousel_image_1.jpg"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment