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;
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2014-12-17 21:30:16 -05:00
|
|
|
> .carousel-item {
|
2012-01-15 19:27:36 -05:00
|
|
|
position: relative;
|
2014-12-11 15:05:29 -05:00
|
|
|
display: none;
|
2014-07-08 05:04:48 -04:00
|
|
|
transition: .6s ease-in-out left;
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2013-01-31 10:06:37 -05:00
|
|
|
// Account for jankitude on images
|
|
|
|
> img,
|
2013-01-31 12:04:12 -05:00
|
|
|
> a > img {
|
2015-08-20 17:38:40 -04:00
|
|
|
@extend .img-fluid;
|
2013-01-31 10:06:37 -05:00
|
|
|
line-height: 1;
|
|
|
|
}
|
2014-04-23 06:36:49 -04:00
|
|
|
|
|
|
|
// WebKit CSS3 transforms for supported devices
|
2014-07-06 22:20:06 -04:00
|
|
|
@media all and (transform-3d), (-webkit-transform-3d) {
|
2014-11-30 23:29:47 -05:00
|
|
|
transition: transform .6s ease-in-out;
|
|
|
|
backface-visibility: hidden;
|
2015-06-19 02:56:43 -04:00
|
|
|
perspective: 1000px;
|
2014-08-02 21:46:11 -04:00
|
|
|
|
2014-07-07 19:49:08 -04:00
|
|
|
&.next,
|
|
|
|
&.active.right {
|
2014-04-23 06:36:49 -04:00
|
|
|
left: 0;
|
2014-12-11 15:05:29 -05:00
|
|
|
transform: translate3d(100%, 0, 0);
|
2014-04-23 06:36:49 -04:00
|
|
|
}
|
2014-07-07 19:49:08 -04:00
|
|
|
&.prev,
|
|
|
|
&.active.left {
|
2014-04-23 06:36:49 -04:00
|
|
|
left: 0;
|
2014-12-11 15:05:29 -05:00
|
|
|
transform: translate3d(-100%, 0, 0);
|
2014-04-23 06:36:49 -04:00
|
|
|
}
|
2014-07-07 19:49:08 -04:00
|
|
|
&.next.left,
|
|
|
|
&.prev.right,
|
|
|
|
&.active {
|
2014-04-23 06:36:49 -04:00
|
|
|
left: 0;
|
2014-12-11 15:05:29 -05:00
|
|
|
transform: translate3d(0, 0, 0);
|
2014-04-23 06:36:49 -04:00
|
|
|
}
|
|
|
|
}
|
2012-01-25 14:47:36 -05:00
|
|
|
}
|
|
|
|
|
2012-11-28 05:17:50 -05:00
|
|
|
> .active,
|
|
|
|
> .next,
|
2014-04-26 02:30:50 -04:00
|
|
|
> .prev {
|
|
|
|
display: block;
|
|
|
|
}
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2012-11-28 05:17:50 -05:00
|
|
|
> .active {
|
2012-01-15 21:40:17 -05:00
|
|
|
left: 0;
|
|
|
|
}
|
2012-01-15 19:27:36 -05:00
|
|
|
|
2012-11-28 05:17:50 -05:00
|
|
|
> .next,
|
|
|
|
> .prev {
|
2012-01-15 19:27:36 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2012-11-28 05:17:50 -05:00
|
|
|
> .next {
|
2012-01-15 21:40:17 -05:00
|
|
|
left: 100%;
|
|
|
|
}
|
2012-11-28 05:17:50 -05:00
|
|
|
> .prev {
|
2012-01-15 21:40:17 -05:00
|
|
|
left: -100%;
|
|
|
|
}
|
2012-11-28 05:17:50 -05:00
|
|
|
> .next.left,
|
|
|
|
> .prev.right {
|
2012-01-15 21:40:17 -05:00
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2012-11-28 05:17:50 -05:00
|
|
|
> .active.left {
|
2012-01-15 21:40:17 -05:00
|
|
|
left: -100%;
|
|
|
|
}
|
2012-11-28 05:17:50 -05:00
|
|
|
> .active.right {
|
2012-01-15 21:40:17 -05:00
|
|
|
left: 100%;
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
|
|
|
.carousel-control {
|
|
|
|
position: absolute;
|
2012-09-26 14:20:27 -04:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2014-12-11 15:05:29 -05:00
|
|
|
left: 0;
|
2014-12-02 17:02:35 -05:00
|
|
|
width: $carousel-control-width;
|
|
|
|
font-size: $carousel-control-font-size;
|
|
|
|
color: $carousel-control-color;
|
2013-02-16 05:47:15 -05:00
|
|
|
text-align: center;
|
2014-12-02 17:02:35 -05:00
|
|
|
text-shadow: $carousel-text-shadow;
|
2014-12-11 15:05:29 -05:00
|
|
|
opacity: $carousel-control-opacity;
|
2013-10-24 22:20:08 -04:00
|
|
|
// We can't have this 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
|
|
|
|
2012-10-01 02:44:23 -04:00
|
|
|
// Set gradients for backgrounds
|
|
|
|
&.left {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include gradient-horizontal($start-color: rgba(0,0,0,.5), $end-color: rgba(0,0,0,.0001));
|
2012-10-01 02:44:23 -04:00
|
|
|
}
|
2012-01-15 21:40:17 -05:00
|
|
|
&.right {
|
2012-09-26 14:20:27 -04:00
|
|
|
right: 0;
|
2014-12-11 15:05:29 -05:00
|
|
|
left: auto;
|
2014-12-02 17:02:35 -05:00
|
|
|
@include gradient-horizontal($start-color: rgba(0,0,0,.0001), $end-color: rgba(0,0,0,.5));
|
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
|
|
|
}
|
2012-10-01 02:44:23 -04:00
|
|
|
|
|
|
|
// Toggles
|
2013-07-18 03:48:02 -04:00
|
|
|
.icon-prev,
|
2014-07-08 03:33:21 -04:00
|
|
|
.icon-next {
|
2012-10-01 02:44:23 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
z-index: 5;
|
2013-02-16 04:22:15 -05:00
|
|
|
display: inline-block;
|
2014-12-11 15:05:29 -05:00
|
|
|
width: 20px;
|
2014-07-08 03:33:21 -04:00
|
|
|
height: 20px;
|
|
|
|
margin-top: -10px;
|
|
|
|
font-family: serif;
|
2014-11-30 23:17:45 -05:00
|
|
|
line-height: 1;
|
2013-08-19 03:58:29 -04:00
|
|
|
}
|
2014-07-08 03:33:21 -04:00
|
|
|
.icon-prev {
|
2013-08-21 18:51:24 -04:00
|
|
|
left: 50%;
|
2014-03-31 04:37:55 -04:00
|
|
|
margin-left: -10px;
|
2013-08-21 18:51:24 -04:00
|
|
|
}
|
2014-07-08 03:33:21 -04:00
|
|
|
.icon-next {
|
2013-08-21 18:51:24 -04:00
|
|
|
right: 50%;
|
2014-03-31 04:37:55 -04:00
|
|
|
margin-right: -10px;
|
2013-08-21 18:51:24 -04:00
|
|
|
}
|
2014-03-31 04:37:55 -04:00
|
|
|
|
2013-07-06 14:20:56 -04:00
|
|
|
.icon-prev {
|
2015-08-19 16:31:31 -04:00
|
|
|
&::before {
|
2014-12-11 15:05:29 -05:00
|
|
|
content: "\2039";// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
|
2013-07-06 14:20:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.icon-next {
|
2015-08-19 16:31:31 -04:00
|
|
|
&::before {
|
2014-12-11 15:05:29 -05:00
|
|
|
content: "\203a";// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
|
2013-07-06 14:20:56 -04:00
|
|
|
}
|
|
|
|
}
|
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;
|
2013-07-19 20:36:03 -04:00
|
|
|
bottom: 10px;
|
2013-02-16 04:22:15 -05:00
|
|
|
left: 50%;
|
2013-05-16 21:29:53 -04:00
|
|
|
z-index: 15;
|
2013-08-05 14:59:32 -04:00
|
|
|
width: 60%;
|
2013-06-22 20:38:02 -04:00
|
|
|
padding-left: 0;
|
2014-12-11 15:05:29 -05:00
|
|
|
margin-left: -30%;
|
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 {
|
2013-02-16 04:22:15 -05:00
|
|
|
display: inline-block;
|
2014-12-11 15:05:29 -05:00
|
|
|
width: 10px;
|
2013-07-01 21:16:59 -04:00
|
|
|
height: 10px;
|
|
|
|
margin: 1px;
|
2012-12-20 02:52:38 -05:00
|
|
|
text-indent: -999px;
|
2013-02-08 12:56:04 -05:00
|
|
|
cursor: pointer;
|
2014-07-08 22:20:45 -04:00
|
|
|
// IE9 hack for event handling
|
2013-10-20 19:46:38 -04:00
|
|
|
//
|
2015-10-27 15:46:02 -04:00
|
|
|
// Internet Explorer 9 does not properly handle clicks on elements with a `background-color` of `transparent`,
|
2015-11-05 19:30:57 -05:00
|
|
|
// so we use `rgba(0,0,0,0)` instead since it's a non-buggy equivalent.
|
2015-10-27 15:46:02 -04:00
|
|
|
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer
|
2013-10-20 19:46:38 -04:00
|
|
|
background-color: rgba(0,0,0,0); // IE9
|
2014-12-11 15:05:29 -05:00
|
|
|
border: 1px solid $carousel-indicator-border-color;
|
|
|
|
border-radius: 10px;
|
2012-12-20 02:52:38 -05:00
|
|
|
}
|
|
|
|
.active {
|
2014-12-11 15:05:29 -05:00
|
|
|
width: 12px;
|
2013-07-01 21:16:59 -04:00
|
|
|
height: 12px;
|
2014-12-11 15:05:29 -05:00
|
|
|
margin: 0;
|
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;
|
2013-04-02 19:17:04 -04:00
|
|
|
right: 15%;
|
2013-02-16 05:47:15 -05:00
|
|
|
bottom: 20px;
|
2014-12-11 15:05:29 -05:00
|
|
|
left: 15%;
|
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;
|
2014-12-02 17:02:35 -05:00
|
|
|
text-shadow: $carousel-text-shadow;
|
|
|
|
|
2014-12-11 15:05:29 -05:00
|
|
|
.btn {
|
2013-04-01 09:27:49 -04:00
|
|
|
text-shadow: none; // No shadow for button elements in carousel-caption
|
|
|
|
}
|
2013-02-16 05:47:15 -05:00
|
|
|
}
|
|
|
|
|
2012-07-09 00:47:16 -04:00
|
|
|
|
2015-04-18 14:17:28 -04:00
|
|
|
//
|
|
|
|
// Responsive variations
|
|
|
|
//
|
|
|
|
|
2014-12-29 16:40:19 -05:00
|
|
|
@include media-breakpoint-up(sm) {
|
2013-02-16 05:47:15 -05:00
|
|
|
// Scale up the controls a smidge
|
2013-09-01 05:03:19 -04:00
|
|
|
.carousel-control {
|
|
|
|
.icon-prev,
|
|
|
|
.icon-next {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
margin-top: -15px;
|
|
|
|
font-size: 30px;
|
|
|
|
}
|
2014-03-31 04:37:55 -04:00
|
|
|
.icon-prev {
|
|
|
|
margin-left: -15px;
|
|
|
|
}
|
|
|
|
.icon-next {
|
|
|
|
margin-right: -15px;
|
|
|
|
}
|
2013-01-30 12:14:22 -05:00
|
|
|
}
|
2013-02-16 04:22:15 -05:00
|
|
|
|
2013-02-16 05:47:15 -05:00
|
|
|
// Show and left align the captions
|
|
|
|
.carousel-caption {
|
2013-04-02 19:17:04 -04:00
|
|
|
right: 20%;
|
2014-12-11 15:05:29 -05:00
|
|
|
left: 20%;
|
2013-04-02 19:17:04 -04:00
|
|
|
padding-bottom: 30px;
|
2013-02-16 05:47:15 -05:00
|
|
|
}
|
2013-07-19 20:36:03 -04:00
|
|
|
|
|
|
|
// Move up the indicators
|
|
|
|
.carousel-indicators {
|
|
|
|
bottom: 20px;
|
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|