carousel.less 3.72 KB
Newer Older
1
2
3
4
//
// Carousel
// --------------------------------------------------

5

Mark Otto's avatar
Mark Otto committed
6
// Wrapper for the slide container and indicators
7
.carousel {
8
9
  position: relative;
}
10

11
.carousel-inner {
Mark Otto's avatar
Mark Otto committed
12
  position: relative;
13
14
  overflow: hidden;
  width: 100%;
15

16
  > .item {
17
18
19
20
    display: none;
    position: relative;
    .transition(.6s ease-in-out left);

21
22
    // Account for jankitude on images
    > img,
RJ Regenold's avatar
RJ Regenold committed
23
    > a > img {
Mark Otto's avatar
Mark Otto committed
24
      .img-responsive();
25
26
      line-height: 1;
    }
27
28
  }

29
30
31
  > .active,
  > .next,
  > .prev { display: block; }
32

33
  > .active {
34
35
    left: 0;
  }
36

37
38
  > .next,
  > .prev {
39
40
41
42
43
    position: absolute;
    top: 0;
    width: 100%;
  }

44
  > .next {
45
46
    left: 100%;
  }
47
  > .prev {
48
49
    left: -100%;
  }
50
51
  > .next.left,
  > .prev.right {
52
53
54
    left: 0;
  }

55
  > .active.left {
56
57
    left: -100%;
  }
58
  > .active.right {
59
60
    left: 100%;
  }
61

62
}
63

64
65
66
67
68
// Left/right controls for nav
// ---------------------------

.carousel-control {
  position: absolute;
Mark Otto's avatar
Mark Otto committed
69
70
71
  top: 0;
  left: 0;
  bottom: 0;
syed's avatar
syed committed
72
73
74
  width: @carousel-control-width;
  .opacity(@carousel-control-opacity);
  font-size: @carousel-control-font-size;
75
  color: @carousel-control-color;
76
  text-align: center;
Mark Otto's avatar
Mark Otto committed
77
  text-shadow: @carousel-text-shadow;
78
79
  // We can't have this transition here because webkit cancels the carousel
  // animation if you trip this while in the middle of another animation.
80

Mark Otto's avatar
Mark Otto committed
81
82
  // Set gradients for backgrounds
  &.left {
Mark Otto's avatar
Mark Otto committed
83
    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));
Mark Otto's avatar
Mark Otto committed
84
  }
85
86
  &.right {
    left: auto;
Mark Otto's avatar
Mark Otto committed
87
    right: 0;
Mark Otto's avatar
Mark Otto committed
88
    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));
89
90
  }

91
92
93
  // Hover/focus state
  &:hover,
  &:focus {
Mark Otto's avatar
Mark Otto committed
94
    color: @carousel-control-color;
95
    text-decoration: none;
96
    .opacity(.9);
97
  }
Mark Otto's avatar
Mark Otto committed
98
99

  // Toggles
Mark Otto's avatar
Mark Otto committed
100
101
  .icon-prev,
  .icon-next {
Mark Otto's avatar
Mark Otto committed
102
103
    position: absolute;
    top: 50%;
104
    left: 50%;
Mark Otto's avatar
Mark Otto committed
105
    z-index: 5;
Mark Otto's avatar
Mark Otto committed
106
107
108
109
    display: inline-block;
    width:  20px;
    height: 20px;
    margin-top: -10px;
110
    margin-left: -10px;
fat's avatar
fat committed
111
    font-family: serif;
Mark Otto's avatar
Mark Otto committed
112
  }
113

114
115
  .icon-prev {
    &:before {
116
      content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
117
118
119
120
    }
  }
  .icon-next {
    &:before {
121
      content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
122
123
    }
  }
124
}
Mark Otto's avatar
Mark Otto committed
125

126
// Optional indicator pips
127
//
128
// Add an unordered list with the following class and add a list item for each
129
130
// slide your carousel holds.

131
132
.carousel-indicators {
  position: absolute;
133
  bottom: 10px;
Mark Otto's avatar
Mark Otto committed
134
  left: 50%;
Mark Otto's avatar
Mark Otto committed
135
  z-index: 15;
136
137
  width: 60%;
  margin-left: -30%;
138
  padding-left: 0;
139
  list-style: none;
Mark Otto's avatar
Mark Otto committed
140
  text-align: center;
141
142

  li {
Mark Otto's avatar
Mark Otto committed
143
    display: inline-block;
144
145
146
    width:  10px;
    height: 10px;
    margin: 1px;
147
    text-indent: -999px;
Mark Otto's avatar
Mark Otto committed
148
    border: 1px solid @carousel-indicator-border-color;
149
    border-radius: 10px;
150
    cursor: pointer;
151
152
  }
  .active {
153
154
155
    margin: 0;
    width:  12px;
    height: 12px;
Mark Otto's avatar
Mark Otto committed
156
    background-color: @carousel-indicator-active-bg;
157
158
  }
}
159

160
161
162
163
164
// Optional captions
// -----------------------------
// Hidden by default for smaller viewports
.carousel-caption {
  position: absolute;
165
166
  left: 15%;
  right: 15%;
167
  bottom: 20px;
168
  z-index: 10;
169
170
  padding-top: 20px;
  padding-bottom: 20px;
171
  color: @carousel-caption-color;
172
  text-align: center;
Mark Otto's avatar
Mark Otto committed
173
  text-shadow: @carousel-text-shadow;
174
175
176
  & .btn {
    text-shadow: none; // No shadow for button elements in carousel-caption
  }
177
178
}

179

180
181
// Scale up controls for tablets and up
@media screen and (min-width: @screen-tablet) {
nextgenthemes's avatar
nextgenthemes committed
182

183
  // Scale up the controls a smidge
184
185
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
Mark Otto's avatar
Mark Otto committed
186
187
188
    width: 30px;
    height: 30px;
    margin-top: -15px;
189
    margin-left: -15px;
Mark Otto's avatar
Mark Otto committed
190
    font-size: 30px;
nextgenthemes's avatar
nextgenthemes committed
191
  }
Mark Otto's avatar
Mark Otto committed
192

193
194
  // Show and left align the captions
  .carousel-caption {
195
196
197
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
198
  }
199
200
201
202
203

  // Move up the indicators
  .carousel-indicators {
    bottom: 20px;
  }
204
}