2012-06-28 21:46:45 -07:00
|
|
|
//
|
|
|
|
// Carousel
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-15 16:27:36 -08:00
|
|
|
|
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
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
2012-01-15 16:27:36 -08:00
|
|
|
|
2012-11-28 02:17:50 -08:00
|
|
|
> .item {
|
2012-01-15 16:27:36 -08:00
|
|
|
display: none;
|
|
|
|
position: relative;
|
|
|
|
.transition(.6s ease-in-out left);
|
|
|
|
|
2013-01-31 09:06:37 -06:00
|
|
|
// Account for jankitude on images
|
|
|
|
> img,
|
2013-01-31 11:04:12 -06:00
|
|
|
> a > img {
|
2013-06-28 09:24:46 -07:00
|
|
|
.img-responsive();
|
2013-01-31 09:06:37 -06:00
|
|
|
line-height: 1;
|
|
|
|
}
|
2012-01-25 11:47:36 -08:00
|
|
|
}
|
|
|
|
|
2012-11-28 02:17:50 -08:00
|
|
|
> .active,
|
|
|
|
> .next,
|
|
|
|
> .prev { display: block; }
|
2012-01-15 16:27:36 -08:00
|
|
|
|
2012-11-28 02:17:50 -08:00
|
|
|
> .active {
|
2012-01-15 18:40:17 -08:00
|
|
|
left: 0;
|
|
|
|
}
|
2012-01-15 16:27:36 -08:00
|
|
|
|
2012-11-28 02:17:50 -08:00
|
|
|
> .next,
|
|
|
|
> .prev {
|
2012-01-15 16:27:36 -08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2012-11-28 02:17:50 -08:00
|
|
|
> .next {
|
2012-01-15 18:40:17 -08:00
|
|
|
left: 100%;
|
|
|
|
}
|
2012-11-28 02:17:50 -08:00
|
|
|
> .prev {
|
2012-01-15 18:40:17 -08:00
|
|
|
left: -100%;
|
|
|
|
}
|
2012-11-28 02:17:50 -08:00
|
|
|
> .next.left,
|
|
|
|
> .prev.right {
|
2012-01-15 18:40:17 -08:00
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2012-11-28 02:17:50 -08:00
|
|
|
> .active.left {
|
2012-01-15 18:40:17 -08:00
|
|
|
left: -100%;
|
|
|
|
}
|
2012-11-28 02:17:50 -08:00
|
|
|
> .active.right {
|
2012-01-15 18:40:17 -08:00
|
|
|
left: 100%;
|
|
|
|
}
|
2012-01-15 16:27:36 -08:00
|
|
|
|
2012-01-15 18:40:17 -08:00
|
|
|
}
|
2012-01-15 16:27:36 -08:00
|
|
|
|
2012-01-15 18:40:17 -08:00
|
|
|
// Left/right controls for nav
|
|
|
|
// ---------------------------
|
|
|
|
|
|
|
|
.carousel-control {
|
|
|
|
position: absolute;
|
2012-09-26 11:20:27 -07:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
2013-07-28 17:32:08 +05:00
|
|
|
width: @carousel-control-width;
|
|
|
|
.opacity(@carousel-control-opacity);
|
|
|
|
font-size: @carousel-control-font-size;
|
2013-07-20 12:56:20 +05:00
|
|
|
color: @carousel-control-color;
|
2013-02-16 02:47:15 -08:00
|
|
|
text-align: center;
|
2013-07-23 23:48:17 -07:00
|
|
|
text-shadow: @carousel-text-shadow;
|
2013-07-01 17:32:07 -07:00
|
|
|
// We can't have this transition here because webkit cancels the carousel
|
|
|
|
// animation if you trip this while in the middle of another animation.
|
2012-01-15 18:40:17 -08:00
|
|
|
|
2012-09-30 23:44:23 -07:00
|
|
|
// Set gradients for backgrounds
|
|
|
|
&.left {
|
2013-05-25 13:16:15 -07:00
|
|
|
#gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));
|
2012-09-30 23:44:23 -07:00
|
|
|
}
|
2012-01-15 18:40:17 -08:00
|
|
|
&.right {
|
|
|
|
left: auto;
|
2012-09-26 11:20:27 -07:00
|
|
|
right: 0;
|
2013-05-25 13:16:15 -07:00
|
|
|
#gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));
|
2012-01-15 18:40:17 -08:00
|
|
|
}
|
|
|
|
|
2013-01-02 22:39:21 +00:00
|
|
|
// Hover/focus state
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2013-07-23 23:03:57 -07:00
|
|
|
color: @carousel-control-color;
|
2012-01-15 18:40:17 -08:00
|
|
|
text-decoration: none;
|
2013-02-28 19:46:49 -08:00
|
|
|
.opacity(.9);
|
2012-01-15 18:40:17 -08:00
|
|
|
}
|
2012-09-30 23:44:23 -07:00
|
|
|
|
|
|
|
// Toggles
|
2013-07-18 00:48:02 -07:00
|
|
|
.icon-prev,
|
2013-08-19 00:58:29 -07:00
|
|
|
.icon-next,
|
|
|
|
.glyphicon-chevron-left,
|
|
|
|
.glyphicon-chevron-right {
|
2012-09-30 23:44:23 -07:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2013-02-16 02:47:15 -08:00
|
|
|
left: 50%;
|
2012-09-30 23:44:23 -07:00
|
|
|
z-index: 5;
|
2013-02-16 01:22:15 -08:00
|
|
|
display: inline-block;
|
2013-08-19 00:58:29 -07:00
|
|
|
}
|
|
|
|
.icon-prev,
|
|
|
|
.icon-next {
|
2013-02-16 01:22:15 -08:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin-top: -10px;
|
2013-02-16 02:47:15 -08:00
|
|
|
margin-left: -10px;
|
2013-07-26 22:59:21 -07:00
|
|
|
font-family: serif;
|
2012-09-30 23:44:23 -07:00
|
|
|
}
|
2013-08-12 14:20:17 +02:00
|
|
|
|
2013-07-06 22:20:56 +04:00
|
|
|
.icon-prev {
|
|
|
|
&:before {
|
2013-07-18 11:49:39 -07:00
|
|
|
content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
|
2013-07-06 22:20:56 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.icon-next {
|
|
|
|
&:before {
|
2013-07-18 11:49:39 -07:00
|
|
|
content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
|
2013-07-06 22:20:56 +04:00
|
|
|
}
|
|
|
|
}
|
2012-01-15 18:40:17 -08:00
|
|
|
}
|
2012-09-30 23:44:23 -07:00
|
|
|
|
2013-02-16 02:47:15 -08:00
|
|
|
// Optional indicator pips
|
2013-08-05 11:59:32 -07:00
|
|
|
//
|
2013-08-05 13:13:54 -07:00
|
|
|
// Add an unordered 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;
|
2013-07-19 17:36:03 -07:00
|
|
|
bottom: 10px;
|
2013-02-16 01:22:15 -08:00
|
|
|
left: 50%;
|
2013-05-16 18:29:53 -07:00
|
|
|
z-index: 15;
|
2013-08-05 11:59:32 -07:00
|
|
|
width: 60%;
|
|
|
|
margin-left: -30%;
|
2013-06-22 21:38:02 -03:00
|
|
|
padding-left: 0;
|
2012-12-19 23:52:38 -08:00
|
|
|
list-style: none;
|
2013-02-16 01:22:15 -08:00
|
|
|
text-align: center;
|
2012-12-19 23:52:38 -08:00
|
|
|
|
|
|
|
li {
|
2013-02-16 01:22:15 -08:00
|
|
|
display: inline-block;
|
2013-07-01 18:16:59 -07:00
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
margin: 1px;
|
2012-12-19 23:52:38 -08:00
|
|
|
text-indent: -999px;
|
2013-07-23 23:03:57 -07:00
|
|
|
border: 1px solid @carousel-indicator-border-color;
|
2013-07-01 18:16:59 -07:00
|
|
|
border-radius: 10px;
|
2013-02-08 09:56:04 -08:00
|
|
|
cursor: pointer;
|
2012-12-19 23:52:38 -08:00
|
|
|
}
|
|
|
|
.active {
|
2013-07-01 18:16:59 -07:00
|
|
|
margin: 0;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2013-07-23 23:03:57 -07:00
|
|
|
background-color: @carousel-indicator-active-bg;
|
2012-12-19 23:52:38 -08:00
|
|
|
}
|
|
|
|
}
|
2012-01-15 18:40:17 -08:00
|
|
|
|
2013-02-16 02:47:15 -08:00
|
|
|
// Optional captions
|
|
|
|
// -----------------------------
|
|
|
|
// Hidden by default for smaller viewports
|
|
|
|
.carousel-caption {
|
|
|
|
position: absolute;
|
2013-04-02 16:17:04 -07:00
|
|
|
left: 15%;
|
|
|
|
right: 15%;
|
2013-02-16 02:47:15 -08:00
|
|
|
bottom: 20px;
|
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;
|
2013-07-20 12:56:20 +05:00
|
|
|
color: @carousel-caption-color;
|
2013-04-02 16:17:04 -07:00
|
|
|
text-align: center;
|
2013-07-23 23:03:57 -07:00
|
|
|
text-shadow: @carousel-text-shadow;
|
2013-04-01 09:27:49 -04:00
|
|
|
& .btn {
|
|
|
|
text-shadow: none; // No shadow for button elements in carousel-caption
|
|
|
|
}
|
2013-02-16 02:47:15 -08:00
|
|
|
}
|
|
|
|
|
2012-07-08 21:47:16 -07:00
|
|
|
|
2013-04-27 18:47:47 +02:00
|
|
|
// Scale up controls for tablets and up
|
2013-08-21 12:26:20 -07:00
|
|
|
@media screen and (min-width: @screen-sm) {
|
2013-01-30 18:14:22 +01:00
|
|
|
|
2013-02-16 02:47:15 -08:00
|
|
|
// Scale up the controls a smidge
|
2013-07-06 22:20:56 +04:00
|
|
|
.carousel-control .icon-prev,
|
|
|
|
.carousel-control .icon-next {
|
2013-02-16 01:22:15 -08:00
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
margin-top: -15px;
|
2013-02-16 02:47:15 -08:00
|
|
|
margin-left: -15px;
|
2013-02-16 01:22:15 -08:00
|
|
|
font-size: 30px;
|
2013-01-30 18:14:22 +01:00
|
|
|
}
|
2013-02-16 01:22:15 -08:00
|
|
|
|
2013-02-16 02:47:15 -08:00
|
|
|
// Show and left align the captions
|
|
|
|
.carousel-caption {
|
2013-04-02 16:17:04 -07:00
|
|
|
left: 20%;
|
|
|
|
right: 20%;
|
|
|
|
padding-bottom: 30px;
|
2013-02-16 02:47:15 -08:00
|
|
|
}
|
2013-07-19 17:36:03 -07:00
|
|
|
|
|
|
|
// Move up the indicators
|
|
|
|
.carousel-indicators {
|
|
|
|
bottom: 20px;
|
|
|
|
}
|
2012-01-15 18:40:17 -08:00
|
|
|
}
|