twbs--bootstrap/less/carousel.less

176 lines
2.7 KiB
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Carousel
// --------------------------------------------------
.carousel {
position: relative;
margin-bottom: @line-height-base;
line-height: 1;
}
.carousel-inner {
2012-09-26 18:20:27 +00:00
position: relative;
overflow: hidden;
width: 100%;
}
.carousel-inner {
> .item {
display: none;
position: relative;
.transition(.6s ease-in-out left);
// Account for jankitude on images
> img,
2013-01-31 17:04:12 +00:00
> a > img {
display: block;
line-height: 1;
}
}
> .active,
> .next,
> .prev { display: block; }
> .active {
left: 0;
}
> .next,
> .prev {
position: absolute;
top: 0;
width: 100%;
}
> .next {
left: 100%;
}
> .prev {
left: -100%;
}
> .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;
2012-10-01 06:44:23 +00:00
width: 120px;
.opacity(50);
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);
2012-10-01 06:44:23 +00:00
// Set gradients for backgrounds
&.left {
#gradient > .horizontal(rgba(0,0,0,.75), rgba(0,0,0,.001));
background-color: transparent;
}
&.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/focus state
&:hover,
&:focus {
2012-11-30 23:05:23 +00:00
color: #fff;
text-decoration: none;
.opacity(90);
}
2012-10-01 06:44:23 +00:00
// Toggles
.control {
position: absolute;
top: 50%;
z-index: 5;
display: block;
margin-top: -35px;
margin-left: 30px;
font-size: 80px;
font-weight: 100;
color: #fff;
text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
&.right .control {
margin-left: 70px;
}
}
2012-10-01 06:44:23 +00:00
// Carousel indicator pips
// -----------------------------
.carousel-indicators {
position: absolute;
top: 15px;
right: 15px;
z-index: 5;
margin: 0;
list-style: none;
li {
display: block;
float: left;
width: 10px;
height: 10px;
margin-left: 5px;
text-indent: -999px;
background-color: #ccc;
background-color: rgba(255,255,255,.25);
border-radius: 5px;
}
.active {
background-color: #fff;
}
}
// 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%;
h3,
p {
color: #fff;
line-height: @line-height-base;
}
h3 {
margin: 0 0 5px;
}
p {
margin-bottom: 0;
}
}