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