21 lines
377 B
CSS
21 lines
377 B
CSS
/*
|
|
* responsive-carousel
|
|
* https://github.com/filamentgroup/responsive-carousel
|
|
*
|
|
* Copyright (c) 2012 Filament Group, Inc.
|
|
* Licensed under the MIT, GPL licenses.
|
|
*/
|
|
.carousel {
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
.carousel .carousel-item {
|
|
display: none;
|
|
}
|
|
.carousel .carousel-active {
|
|
display: block;
|
|
}
|
|
.carousel .carousel-nav:nth-child(2) {
|
|
display: none;
|
|
}
|