carousel.less 3.81 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
  .icon-prev,
101
102
103
  .icon-next,
  .glyphicon-chevron-left,
  .glyphicon-chevron-right {
Mark Otto's avatar
Mark Otto committed
104
105
    position: absolute;
    top: 50%;
106
    left: 50%;
Mark Otto's avatar
Mark Otto committed
107
    z-index: 5;
Mark Otto's avatar
Mark Otto committed
108
    display: inline-block;
109
110
111
  }
  .icon-prev,
  .icon-next {
Mark Otto's avatar
Mark Otto committed
112
113
114
    width:  20px;
    height: 20px;
    margin-top: -10px;
115
    margin-left: -10px;
fat's avatar
fat committed
116
    font-family: serif;
Mark Otto's avatar
Mark Otto committed
117
  }
118

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

131
// Optional indicator pips
132
//
133
// Add an unordered list with the following class and add a list item for each
134
135
// slide your carousel holds.

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

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

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

184

185
186
// Scale up controls for tablets and up
@media screen and (min-width: @screen-tablet) {
nextgenthemes's avatar
nextgenthemes committed
187

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

198
199
  // Show and left align the captions
  .carousel-caption {
200
201
202
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
203
  }
204
205
206
207
208

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