2013-02-16 04:22:15 -05:00
|
|
|
// Wrapper for the slide container and indicators
|
2012-01-15 19:27:36 -05:00
|
|
|
.carousel {
|
2012-01-15 21:40:17 -05:00
|
|
|
position: relative;
|
|
|
|
}
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2012-01-15 21:40:17 -05:00
|
|
|
.carousel-inner {
|
2012-09-26 14:20:27 -04:00
|
|
|
position: relative;
|
2012-01-15 21:40:17 -05:00
|
|
|
width: 100%;
|
2014-12-11 15:05:29 -05:00
|
|
|
overflow: hidden;
|
2016-11-26 02:34:16 -05:00
|
|
|
}
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2016-11-26 02:34:16 -05:00
|
|
|
.carousel-item {
|
|
|
|
position: relative;
|
|
|
|
display: none;
|
2016-12-04 22:52:49 -05:00
|
|
|
width: 100%;
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2016-11-26 02:34:16 -05:00
|
|
|
@include if-supports-3d-transforms() {
|
2016-12-05 00:05:19 -05:00
|
|
|
@include transition(transform .6s ease-in-out);
|
2016-11-26 02:34:16 -05:00
|
|
|
backface-visibility: hidden;
|
|
|
|
perspective: 1000px;
|
2012-01-25 14:47:36 -05:00
|
|
|
}
|
2016-11-26 02:34:16 -05:00
|
|
|
}
|
2012-01-25 14:47:36 -05:00
|
|
|
|
2016-11-26 02:43:12 -05:00
|
|
|
.carousel-item.active,
|
|
|
|
.carousel-item-next,
|
|
|
|
.carousel-item-prev {
|
|
|
|
display: block;
|
|
|
|
}
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2016-12-04 22:52:49 -05:00
|
|
|
.carousel-item-next,
|
|
|
|
.carousel-item-prev {
|
2016-11-26 02:43:12 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
}
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2016-12-04 22:52:49 -05:00
|
|
|
// CSS3 transforms when supported by the browser
|
|
|
|
@include if-supports-3d-transforms() {
|
|
|
|
.carousel-item-next.carousel-item-left,
|
|
|
|
.carousel-item-prev.carousel-item-right {
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
2012-01-15 21:40:17 -05:00
|
|
|
|
2016-12-04 22:52:49 -05:00
|
|
|
.carousel-item-next,
|
|
|
|
.active.carousel-item-right {
|
|
|
|
transform: translate3d(100%, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-item-prev,
|
|
|
|
.active.carousel-item-left {
|
|
|
|
transform: translate3d(-100%, 0, 0);
|
|
|
|
}
|
2012-01-15 21:40:17 -05:00
|
|
|
}
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2015-04-18 14:17:28 -04:00
|
|
|
|
|
|
|
//
|
2012-01-15 21:40:17 -05:00
|
|
|
// Left/right controls for nav
|
2015-04-18 14:17:28 -04:00
|
|
|
//
|
2012-01-15 21:40:17 -05:00
|
|
|
|
2016-12-05 02:19:54 -05:00
|
|
|
.carousel-control-prev,
|
|
|
|
.carousel-control-next {
|
2012-01-15 21:40:17 -05:00
|
|
|
position: absolute;
|
2012-09-26 14:20:27 -04:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2014-12-02 17:02:35 -05:00
|
|
|
width: $carousel-control-width;
|
|
|
|
color: $carousel-control-color;
|
2013-02-16 05:47:15 -05:00
|
|
|
text-align: center;
|
2014-12-11 15:05:29 -05:00
|
|
|
opacity: $carousel-control-opacity;
|
2016-12-05 00:54:04 -05:00
|
|
|
// We can't have a transition here because WebKit cancels the carousel
|
2013-07-01 20:32:07 -04:00
|
|
|
// animation if you trip this while in the middle of another animation.
|
2012-01-15 21:40:17 -05:00
|
|
|
|
2013-01-02 17:39:21 -05:00
|
|
|
// Hover/focus state
|
2015-01-01 04:05:01 -05:00
|
|
|
@include hover-focus {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $carousel-control-color;
|
2012-01-15 21:40:17 -05:00
|
|
|
text-decoration: none;
|
2014-12-11 15:05:29 -05:00
|
|
|
outline: 0;
|
2014-07-08 22:22:19 -04:00
|
|
|
opacity: .9;
|
2012-01-15 21:40:17 -05:00
|
|
|
}
|
2016-12-05 00:39:46 -05:00
|
|
|
}
|
2016-12-05 00:54:04 -05:00
|
|
|
.carousel-control-prev {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
.carousel-control-next {
|
|
|
|
right: 0;
|
|
|
|
}
|
2012-10-01 02:44:23 -04:00
|
|
|
|
2016-12-05 00:54:45 -05:00
|
|
|
// Icons for within
|
|
|
|
.carousel-control-prev-icon,
|
|
|
|
.carousel-control-next-icon {
|
2016-12-05 00:39:46 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
z-index: 5;
|
|
|
|
display: inline-block;
|
2016-12-05 01:01:31 -05:00
|
|
|
width: $carousel-control-icon-width;
|
|
|
|
height: $carousel-control-icon-width;
|
|
|
|
margin-top: -($carousel-control-icon-width / 2);
|
2016-12-05 00:39:46 -05:00
|
|
|
font-family: serif;
|
|
|
|
line-height: 1;
|
2016-12-05 00:54:45 -05:00
|
|
|
background: transparent no-repeat center center;
|
|
|
|
background-size: 100% 100%;
|
2016-12-05 00:39:46 -05:00
|
|
|
}
|
2016-12-05 00:54:45 -05:00
|
|
|
.carousel-control-prev-icon {
|
2016-12-05 00:39:46 -05:00
|
|
|
left: 50%;
|
2016-12-05 01:01:31 -05:00
|
|
|
margin-left: -($carousel-control-icon-width / 2);
|
2016-12-05 00:54:45 -05:00
|
|
|
background-image: $carousel-control-prev-icon-bg;
|
2016-12-05 00:39:46 -05:00
|
|
|
}
|
2016-12-05 00:54:45 -05:00
|
|
|
.carousel-control-next-icon {
|
2016-12-05 00:39:46 -05:00
|
|
|
right: 50%;
|
2016-12-05 01:01:31 -05:00
|
|
|
margin-right: -($carousel-control-icon-width / 2);
|
2016-12-05 00:54:45 -05:00
|
|
|
background-image: $carousel-control-next-icon-bg;
|
2012-01-15 21:40:17 -05:00
|
|
|
}
|
2012-10-01 02:44:23 -04:00
|
|
|
|
2015-04-18 14:17:28 -04:00
|
|
|
|
2013-02-16 05:47:15 -05:00
|
|
|
// Optional indicator pips
|
2013-08-05 14:59:32 -04:00
|
|
|
//
|
2013-08-05 16:13:54 -04:00
|
|
|
// Add an unordered list with the following class and add a list item for each
|
2013-08-05 14:59:32 -04:00
|
|
|
// slide your carousel holds.
|
|
|
|
|
2012-12-20 02:52:38 -05:00
|
|
|
.carousel-indicators {
|
|
|
|
position: absolute;
|
2016-12-05 01:05:05 -05:00
|
|
|
right: 0;
|
2013-07-19 20:36:03 -04:00
|
|
|
bottom: 10px;
|
2016-12-05 01:05:05 -05:00
|
|
|
left: 0;
|
2013-05-16 21:29:53 -04:00
|
|
|
z-index: 15;
|
2016-12-05 01:19:20 -05:00
|
|
|
padding-left: 0; // override <ul> default
|
2016-12-05 01:05:05 -05:00
|
|
|
// Use the .carousel-control's width as margin so we don't overlay those
|
|
|
|
margin-right: $carousel-control-width;
|
|
|
|
margin-left: $carousel-control-width;
|
2013-02-16 04:22:15 -05:00
|
|
|
text-align: center;
|
2014-12-11 15:05:29 -05:00
|
|
|
list-style: none;
|
2012-12-20 02:52:38 -05:00
|
|
|
|
|
|
|
li {
|
2016-12-04 23:14:33 -05:00
|
|
|
position: relative;
|
2013-02-16 04:22:15 -05:00
|
|
|
display: inline-block;
|
2016-12-04 23:14:33 -05:00
|
|
|
width: $carousel-indicator-width;
|
|
|
|
height: $carousel-indicator-height;
|
2012-12-20 02:52:38 -05:00
|
|
|
text-indent: -999px;
|
2013-02-08 12:56:04 -05:00
|
|
|
cursor: pointer;
|
2016-12-04 23:14:33 -05:00
|
|
|
background-color: rgba($carousel-indicator-active-bg, .5);
|
|
|
|
|
2016-12-05 00:39:54 -05:00
|
|
|
// Use pseudo classes to increase the hit area by 10px on top and bottom.
|
2016-12-04 23:14:33 -05:00
|
|
|
&::before {
|
|
|
|
position: absolute;
|
|
|
|
top: -10px;
|
|
|
|
left: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
height: 10px;
|
2016-12-04 23:27:33 -05:00
|
|
|
content: "";
|
2016-12-04 23:14:33 -05:00
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
position: absolute;
|
|
|
|
bottom: -10px;
|
|
|
|
left: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
height: 10px;
|
2016-12-04 23:27:33 -05:00
|
|
|
content: "";
|
2016-12-04 23:14:33 -05:00
|
|
|
}
|
2012-12-20 02:52:38 -05:00
|
|
|
}
|
2016-02-17 00:00:10 -05:00
|
|
|
|
2012-12-20 02:52:38 -05:00
|
|
|
.active {
|
2014-12-02 17:02:35 -05:00
|
|
|
background-color: $carousel-indicator-active-bg;
|
2012-12-20 02:52:38 -05:00
|
|
|
}
|
|
|
|
}
|
2012-01-15 21:40:17 -05:00
|
|
|
|
2015-04-18 14:17:28 -04:00
|
|
|
|
2013-02-16 05:47:15 -05:00
|
|
|
// Optional captions
|
2015-04-18 14:17:28 -04:00
|
|
|
//
|
|
|
|
// Hidden by default for smaller viewports.
|
|
|
|
|
2013-02-16 05:47:15 -05:00
|
|
|
.carousel-caption {
|
|
|
|
position: absolute;
|
2016-02-17 00:32:39 -05:00
|
|
|
right: ((100% - $carousel-caption-width) / 2);
|
2013-02-16 05:47:15 -05:00
|
|
|
bottom: 20px;
|
2016-02-17 00:32:39 -05:00
|
|
|
left: ((100% - $carousel-caption-width) / 2);
|
2013-04-02 19:17:04 -04:00
|
|
|
z-index: 10;
|
2013-02-16 05:47:15 -05:00
|
|
|
padding-top: 20px;
|
|
|
|
padding-bottom: 20px;
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $carousel-caption-color;
|
2013-04-02 19:17:04 -04:00
|
|
|
text-align: center;
|
2013-02-16 05:47:15 -05:00
|
|
|
}
|