twbs--bootstrap/less/carousel.less

143 lines
2.2 KiB
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Carousel
// --------------------------------------------------
.carousel {
position: relative;
margin-bottom: @baseLineHeight;
line-height: 1;
}
.carousel-inner {
2012-09-26 18:20:27 +00:00
position: relative;
overflow: hidden;
width: 100%;
}
.carousel {
.item {
display: none;
position: relative;
.transition(.6s ease-in-out left);
}
// Account for jankitude on images
.item > img {
display: block;
line-height: 1;
}
2012-01-28 23:14:57 +00:00
.active,
.next,
.prev { display: block; }
.active {
left: 0;
}
2012-01-28 23:14:57 +00:00
.next,
.prev {
position: absolute;
top: 0;
width: 100%;
}
.next {
left: 100%;
}
.prev {
left: -100%;
}
2012-01-28 23:14:57 +00:00
.next.left,
.prev.right {
left: 0;
}
.active.left {
left: -100%;
}
.active.right {
left: 100%;
}
}
// Left/right controls for nav
// ---------------------------
.carousel-control {
position: absolute;
2012-09-26 18:20:27 +00:00
top: 0;
left: 0;
bottom: 0;
width: 100px;
.opacity(50);
2012-01-28 23:14:57 +00:00
2012-09-26 18:20:27 +00:00
&.left {
#gradient > .horizontal(rgba(0,0,0,.75), rgba(0,0,0,.001));
background-color: transparent;
}
2012-01-28 23:14:57 +00: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
// ;_;
// .transition(opacity .2s linear);
// Reposition the right one
&.right {
left: auto;
2012-09-26 18:20:27 +00:00
right: 0;
#gradient > .horizontal(rgba(0,0,0,.001), rgba(0,0,0,.75));
background-color: transparent;
}
// Hover state
&:hover {
2012-01-21 23:24:06 +00:00
color: @white;
text-decoration: none;
.opacity(90);
}
}
2012-09-26 18:20:27 +00:00
.carousel-control .control {
position: absolute;
top: 50%;
z-index: 5;
display: block;
margin-top: -35px;
margin-left: 35px;
font-size: 80px;
font-weight: 100;
color: #fff;
text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
// Caption for text below images
// -----------------------------
.carousel-caption {
position: absolute;
left: 0;
right: 0;
bottom: 0;
2012-09-26 18:20:27 +00:00
z-index: 10;
padding: 40px;
text-shadow: 0 1px 2px rgba(0,0,0,.6);
max-width: 60%;
}
2012-09-26 18:20:27 +00:00
.carousel-caption h3,
.carousel-caption p {
2012-01-21 23:24:06 +00:00
color: @white;
line-height: @baseLineHeight;
}
2012-09-26 18:20:27 +00:00
.carousel-caption h3 {
margin: 0 0 5px;
}
.carousel-caption p {
margin-bottom: 0;
}