Created
July 2, 2015 05:48
-
-
Save aviogreen/e882800c0e167c767b38 to your computer and use it in GitHub Desktop.
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 | |
.carousel.slide.carousel-fade | |
****************************************************************************/ | |
.carousel-fade { | |
.carousel-inner { | |
.item { | |
opacity: 0; | |
transition-property: opacity; | |
} | |
.active { | |
opacity: 1; | |
} | |
.active.left, | |
.active.right { | |
left: 0; | |
opacity: 0; | |
z-index: 1; | |
} | |
.next.left, | |
.prev.right { | |
opacity: 1; | |
} | |
} | |
.carousel-control { | |
z-index: 2; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment