2013-02-16 01:22:15 -08:00
|
|
|
// Wrapper for the slide container and indicators
|
2012-01-15 16:27:36 -08:00
|
|
|
.carousel {
|
2012-01-15 18:40:17 -08:00
|
|
|
position: relative;
|
|
|
|
}
|
2012-01-15 16:27:36 -08:00
|
|
|
|
2012-01-15 18:40:17 -08:00
|
|
|
.carousel-inner {
|
2012-09-26 11:20:27 -07:00
|
|
|
position: relative;
|
2012-01-15 18:40:17 -08:00
|
|
|
width: 100%;
|
2014-12-11 12:05:29 -08:00
|
|
|
overflow: hidden;
|
2016-11-25 23:34:16 -08:00
|
|
|
}
|
2012-01-15 16:27:36 -08:00
|
|
|
|
2016-11-25 23:34:16 -08:00
|
|
|
.carousel-item {
|
|
|
|
position: relative;
|
|
|
|
display: none;
|
2017-01-20 16:31:42 -05:00
|
|
|
align-items: center;
|
2017-04-08 16:11:59 -07:00
|
|
|
width: 100%;
|
2017-04-08 15:20:26 -07:00
|
|
|
@include transition($carousel-transition);
|
|
|
|
backface-visibility: hidden;
|
|
|
|
perspective: 1000px;
|
2016-11-25 23:34:16 -08:00
|
|
|
}
|
2012-01-25 11:47:36 -08:00
|
|
|
|
2016-11-25 23:43:12 -08:00
|
|
|
.carousel-item.active,
|
|
|
|
.carousel-item-next,
|
|
|
|
.carousel-item-prev {
|
2017-07-01 16:48:46 -07:00
|
|
|
display: block;
|
2016-11-25 23:43:12 -08:00
|
|
|
}
|
2012-01-15 16:27:36 -08:00
|
|
|
|
2016-12-04 19:52:49 -08:00
|
|
|
.carousel-item-next,
|
|
|
|
.carousel-item-prev {
|
2016-11-25 23:43:12 -08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
}
|
2012-01-15 16:27:36 -08:00
|
|
|
|
2016-12-04 19:52:49 -08:00
|
|
|
// CSS3 transforms when supported by the browser
|
2017-04-08 15:20:26 -07:00
|
|
|
.carousel-item-next.carousel-item-left,
|
|
|
|
.carousel-item-prev.carousel-item-right {
|
2017-06-30 17:35:02 -07:00
|
|
|
transform: translateX(0);
|
|
|
|
|
|
|
|
@supports (transform-style: preserve-3d) {
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
2017-04-08 15:20:26 -07:00
|
|
|
}
|
2012-01-15 18:40:17 -08:00
|
|
|
|
2017-04-08 15:20:26 -07:00
|
|
|
.carousel-item-next,
|
|
|
|
.active.carousel-item-right {
|
2017-06-30 17:35:02 -07:00
|
|
|
transform: translateX(100%);
|
|
|
|
|
|
|
|
@supports (transform-style: preserve-3d) {
|
|
|
|
transform: translate3d(100%, 0, 0);
|
|
|
|
}
|
2017-04-08 15:20:26 -07:00
|
|
|
}
|
2016-12-04 19:52:49 -08:00
|
|
|
|
2017-04-08 15:20:26 -07:00
|
|
|
.carousel-item-prev,
|
|
|
|
.active.carousel-item-left {
|
2017-06-30 17:35:02 -07:00
|
|
|
transform: translateX(-100%);
|
|
|
|
|
|
|
|
@supports (transform-style: preserve-3d) {
|
|
|
|
transform: translate3d(-100%, 0, 0);
|
|
|
|
}
|
2012-01-15 18:40:17 -08:00
|
|
|
}
|
2012-01-15 16:27:36 -08:00
|
|
|
|
2015-04-18 11:17:28 -07:00
|
|
|
|
|
|
|
//
|
2012-01-15 18:40:17 -08:00
|
|
|
// Left/right controls for nav
|
2015-04-18 11:17:28 -07:00
|
|
|
//
|
2012-01-15 18:40:17 -08:00
|
|
|
|
2016-12-04 23:19:54 -08:00
|
|
|
.carousel-control-prev,
|
|
|
|
.carousel-control-next {
|
2012-01-15 18:40:17 -08:00
|
|
|
position: absolute;
|
2012-09-26 11:20:27 -07:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2016-12-22 14:41:00 -08:00
|
|
|
// Use flex for alignment (1-3)
|
|
|
|
display: flex; // 1. allow flex styles
|
2016-12-22 14:47:28 -08:00
|
|
|
align-items: center; // 2. vertically center contents
|
|
|
|
justify-content: center; // 3. horizontally center contents
|
2014-12-02 14:02:35 -08:00
|
|
|
width: $carousel-control-width;
|
|
|
|
color: $carousel-control-color;
|
2013-02-16 02:47:15 -08:00
|
|
|
text-align: center;
|
2014-12-11 12:05:29 -08:00
|
|
|
opacity: $carousel-control-opacity;
|
2016-12-04 21:54:04 -08:00
|
|
|
// We can't have a transition here because WebKit cancels the carousel
|
2013-07-01 17:32:07 -07:00
|
|
|
// animation if you trip this while in the middle of another animation.
|
2012-01-15 18:40:17 -08:00
|
|
|
|
2013-01-02 22:39:21 +00:00
|
|
|
// Hover/focus state
|
2015-01-01 01:05:01 -08:00
|
|
|
@include hover-focus {
|
2014-12-02 14:02:35 -08:00
|
|
|
color: $carousel-control-color;
|
2012-01-15 18:40:17 -08:00
|
|
|
text-decoration: none;
|
2014-12-11 12:05:29 -08:00
|
|
|
outline: 0;
|
2014-07-08 19:22:19 -07:00
|
|
|
opacity: .9;
|
2012-01-15 18:40:17 -08:00
|
|
|
}
|
2016-12-04 21:39:46 -08:00
|
|
|
}
|
2016-12-04 21:54:04 -08:00
|
|
|
.carousel-control-prev {
|
|
|
|
left: 0;
|
2017-10-19 09:03:33 -07:00
|
|
|
@if $enable-gradients {
|
2017-10-23 00:00:00 +03:00
|
|
|
background: linear-gradient(90deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .001));
|
2017-10-19 09:03:33 -07:00
|
|
|
}
|
2016-12-04 21:54:04 -08:00
|
|
|
}
|
|
|
|
.carousel-control-next {
|
|
|
|
right: 0;
|
2017-10-19 09:03:33 -07:00
|
|
|
@if $enable-gradients {
|
2017-10-23 00:00:00 +03:00
|
|
|
background: linear-gradient(270deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .001));
|
2017-10-19 09:03:33 -07:00
|
|
|
}
|
2016-12-04 21:54:04 -08:00
|
|
|
}
|
2012-09-30 23:44:23 -07:00
|
|
|
|
2016-12-04 21:54:45 -08:00
|
|
|
// Icons for within
|
|
|
|
.carousel-control-prev-icon,
|
|
|
|
.carousel-control-next-icon {
|
2016-12-04 21:39:46 -08:00
|
|
|
display: inline-block;
|
2016-12-04 22:01:31 -08:00
|
|
|
width: $carousel-control-icon-width;
|
|
|
|
height: $carousel-control-icon-width;
|
2016-12-04 21:54:45 -08:00
|
|
|
background: transparent no-repeat center center;
|
|
|
|
background-size: 100% 100%;
|
2016-12-04 21:39:46 -08:00
|
|
|
}
|
2016-12-04 21:54:45 -08:00
|
|
|
.carousel-control-prev-icon {
|
|
|
|
background-image: $carousel-control-prev-icon-bg;
|
2016-12-04 21:39:46 -08:00
|
|
|
}
|
2016-12-04 21:54:45 -08:00
|
|
|
.carousel-control-next-icon {
|
|
|
|
background-image: $carousel-control-next-icon-bg;
|
2012-01-15 18:40:17 -08:00
|
|
|
}
|
2012-09-30 23:44:23 -07:00
|
|
|
|
2015-04-18 11:17:28 -07:00
|
|
|
|
2013-02-16 02:47:15 -08:00
|
|
|
// Optional indicator pips
|
2013-08-05 11:59:32 -07:00
|
|
|
//
|
2017-01-01 12:00:17 -08:00
|
|
|
// Add an ordered list with the following class and add a list item for each
|
2013-08-05 11:59:32 -07:00
|
|
|
// slide your carousel holds.
|
|
|
|
|
2012-12-19 23:52:38 -08:00
|
|
|
.carousel-indicators {
|
|
|
|
position: absolute;
|
2016-12-04 22:05:05 -08:00
|
|
|
right: 0;
|
2013-07-19 17:36:03 -07:00
|
|
|
bottom: 10px;
|
2016-12-04 22:05:05 -08:00
|
|
|
left: 0;
|
2013-05-16 18:29:53 -07:00
|
|
|
z-index: 15;
|
2016-12-22 14:31:33 -08:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2017-01-01 12:00:17 -08:00
|
|
|
padding-left: 0; // override <ol> default
|
2016-12-04 22:05:05 -08: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;
|
2014-12-11 12:05:29 -08:00
|
|
|
list-style: none;
|
2012-12-19 23:52:38 -08:00
|
|
|
|
|
|
|
li {
|
2016-12-04 20:14:33 -08:00
|
|
|
position: relative;
|
2017-07-01 16:48:46 -07:00
|
|
|
flex: 0 1 auto;
|
2017-06-30 17:41:04 -07:00
|
|
|
width: $carousel-indicator-width;
|
2016-12-04 20:14:33 -08:00
|
|
|
height: $carousel-indicator-height;
|
2016-12-22 14:31:33 -08:00
|
|
|
margin-right: $carousel-indicator-spacer;
|
|
|
|
margin-left: $carousel-indicator-spacer;
|
2012-12-19 23:52:38 -08:00
|
|
|
text-indent: -999px;
|
2016-12-04 20:14:33 -08:00
|
|
|
background-color: rgba($carousel-indicator-active-bg, .5);
|
|
|
|
|
2016-12-04 21:39:54 -08:00
|
|
|
// Use pseudo classes to increase the hit area by 10px on top and bottom.
|
2016-12-04 20:14:33 -08:00
|
|
|
&::before {
|
|
|
|
position: absolute;
|
|
|
|
top: -10px;
|
|
|
|
left: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
height: 10px;
|
2016-12-04 20:27:33 -08:00
|
|
|
content: "";
|
2016-12-04 20:14:33 -08:00
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
position: absolute;
|
|
|
|
bottom: -10px;
|
|
|
|
left: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
height: 10px;
|
2016-12-04 20:27:33 -08:00
|
|
|
content: "";
|
2016-12-04 20:14:33 -08:00
|
|
|
}
|
2012-12-19 23:52:38 -08:00
|
|
|
}
|
2016-02-16 21:00:10 -08:00
|
|
|
|
2012-12-19 23:52:38 -08:00
|
|
|
.active {
|
2014-12-02 14:02:35 -08:00
|
|
|
background-color: $carousel-indicator-active-bg;
|
2012-12-19 23:52:38 -08:00
|
|
|
}
|
|
|
|
}
|
2012-01-15 18:40:17 -08:00
|
|
|
|
2015-04-18 11:17:28 -07:00
|
|
|
|
2013-02-16 02:47:15 -08:00
|
|
|
// Optional captions
|
2015-04-18 11:17:28 -07:00
|
|
|
//
|
2017-01-01 12:00:17 -08:00
|
|
|
//
|
2015-04-18 11:17:28 -07:00
|
|
|
|
2013-02-16 02:47:15 -08:00
|
|
|
.carousel-caption {
|
|
|
|
position: absolute;
|
2016-02-16 21:32:39 -08:00
|
|
|
right: ((100% - $carousel-caption-width) / 2);
|
2013-02-16 02:47:15 -08:00
|
|
|
bottom: 20px;
|
2016-02-16 21:32:39 -08:00
|
|
|
left: ((100% - $carousel-caption-width) / 2);
|
2013-04-02 16:17:04 -07:00
|
|
|
z-index: 10;
|
2013-02-16 02:47:15 -08:00
|
|
|
padding-top: 20px;
|
|
|
|
padding-bottom: 20px;
|
2014-12-02 14:02:35 -08:00
|
|
|
color: $carousel-caption-color;
|
2013-04-02 16:17:04 -07:00
|
|
|
text-align: center;
|
2013-02-16 02:47:15 -08:00
|
|
|
}
|