bootstrap-source/bootstrap-3.0.3/less Kopie/carousel.less
author stetrabby <info@trabucchi.de>
Fri, 20 Dec 2013 22:49:16 +0100
changeset 54 0ded9d7748b7
permissions -rwxr-xr-x
initial less based on the pymove3d.css
info@54
     1
//
info@54
     2
// Carousel
info@54
     3
// --------------------------------------------------
info@54
     4
info@54
     5
info@54
     6
// Wrapper for the slide container and indicators
info@54
     7
.carousel {
info@54
     8
  position: relative;
info@54
     9
}
info@54
    10
info@54
    11
.carousel-inner {
info@54
    12
  position: relative;
info@54
    13
  overflow: hidden;
info@54
    14
  width: 100%;
info@54
    15
info@54
    16
  > .item {
info@54
    17
    display: none;
info@54
    18
    position: relative;
info@54
    19
    .transition(.6s ease-in-out left);
info@54
    20
info@54
    21
    // Account for jankitude on images
info@54
    22
    > img,
info@54
    23
    > a > img {
info@54
    24
      .img-responsive();
info@54
    25
      line-height: 1;
info@54
    26
    }
info@54
    27
  }
info@54
    28
info@54
    29
  > .active,
info@54
    30
  > .next,
info@54
    31
  > .prev { display: block; }
info@54
    32
info@54
    33
  > .active {
info@54
    34
    left: 0;
info@54
    35
  }
info@54
    36
info@54
    37
  > .next,
info@54
    38
  > .prev {
info@54
    39
    position: absolute;
info@54
    40
    top: 0;
info@54
    41
    width: 100%;
info@54
    42
  }
info@54
    43
info@54
    44
  > .next {
info@54
    45
    left: 100%;
info@54
    46
  }
info@54
    47
  > .prev {
info@54
    48
    left: -100%;
info@54
    49
  }
info@54
    50
  > .next.left,
info@54
    51
  > .prev.right {
info@54
    52
    left: 0;
info@54
    53
  }
info@54
    54
info@54
    55
  > .active.left {
info@54
    56
    left: -100%;
info@54
    57
  }
info@54
    58
  > .active.right {
info@54
    59
    left: 100%;
info@54
    60
  }
info@54
    61
info@54
    62
}
info@54
    63
info@54
    64
// Left/right controls for nav
info@54
    65
// ---------------------------
info@54
    66
info@54
    67
.carousel-control {
info@54
    68
  position: absolute;
info@54
    69
  top: 0;
info@54
    70
  left: 0;
info@54
    71
  bottom: 0;
info@54
    72
  width: @carousel-control-width;
info@54
    73
  .opacity(@carousel-control-opacity);
info@54
    74
  font-size: @carousel-control-font-size;
info@54
    75
  color: @carousel-control-color;
info@54
    76
  text-align: center;
info@54
    77
  text-shadow: @carousel-text-shadow;
info@54
    78
  // We can't have this transition here because WebKit cancels the carousel
info@54
    79
  // animation if you trip this while in the middle of another animation.
info@54
    80
info@54
    81
  // Set gradients for backgrounds
info@54
    82
  &.left {
info@54
    83
    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));
info@54
    84
  }
info@54
    85
  &.right {
info@54
    86
    left: auto;
info@54
    87
    right: 0;
info@54
    88
    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));
info@54
    89
  }
info@54
    90
info@54
    91
  // Hover/focus state
info@54
    92
  &:hover,
info@54
    93
  &:focus {
info@54
    94
    outline: none;
info@54
    95
    color: @carousel-control-color;
info@54
    96
    text-decoration: none;
info@54
    97
    .opacity(.9);
info@54
    98
  }
info@54
    99
info@54
   100
  // Toggles
info@54
   101
  .icon-prev,
info@54
   102
  .icon-next,
info@54
   103
  .glyphicon-chevron-left,
info@54
   104
  .glyphicon-chevron-right {
info@54
   105
    position: absolute;
info@54
   106
    top: 50%;
info@54
   107
    z-index: 5;
info@54
   108
    display: inline-block;
info@54
   109
  }
info@54
   110
  .icon-prev,
info@54
   111
  .glyphicon-chevron-left {
info@54
   112
    left: 50%;
info@54
   113
  }
info@54
   114
  .icon-next,
info@54
   115
  .glyphicon-chevron-right {
info@54
   116
    right: 50%;
info@54
   117
  }
info@54
   118
  .icon-prev,
info@54
   119
  .icon-next {
info@54
   120
    width:  20px;
info@54
   121
    height: 20px;
info@54
   122
    margin-top: -10px;
info@54
   123
    margin-left: -10px;
info@54
   124
    font-family: serif;
info@54
   125
  }
info@54
   126
info@54
   127
  .icon-prev {
info@54
   128
    &:before {
info@54
   129
      content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
info@54
   130
    }
info@54
   131
  }
info@54
   132
  .icon-next {
info@54
   133
    &:before {
info@54
   134
      content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
info@54
   135
    }
info@54
   136
  }
info@54
   137
}
info@54
   138
info@54
   139
// Optional indicator pips
info@54
   140
//
info@54
   141
// Add an unordered list with the following class and add a list item for each
info@54
   142
// slide your carousel holds.
info@54
   143
info@54
   144
.carousel-indicators {
info@54
   145
  position: absolute;
info@54
   146
  bottom: 10px;
info@54
   147
  left: 50%;
info@54
   148
  z-index: 15;
info@54
   149
  width: 60%;
info@54
   150
  margin-left: -30%;
info@54
   151
  padding-left: 0;
info@54
   152
  list-style: none;
info@54
   153
  text-align: center;
info@54
   154
info@54
   155
  li {
info@54
   156
    display: inline-block;
info@54
   157
    width:  10px;
info@54
   158
    height: 10px;
info@54
   159
    margin: 1px;
info@54
   160
    text-indent: -999px;
info@54
   161
    border: 1px solid @carousel-indicator-border-color;
info@54
   162
    border-radius: 10px;
info@54
   163
    cursor: pointer;
info@54
   164
info@54
   165
    // IE8-9 hack for event handling
info@54
   166
    //
info@54
   167
    // Internet Explorer 8-9 does not support clicks on elements without a set
info@54
   168
    // `background-color`. We cannot use `filter` since that's not viewed as a
info@54
   169
    // background color by the browser. Thus, a hack is needed.
info@54
   170
    //
info@54
   171
    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
info@54
   172
    // set alpha transparency for the best results possible.
info@54
   173
    background-color: #000 \9; // IE8
info@54
   174
    background-color: rgba(0,0,0,0); // IE9
info@54
   175
  }
info@54
   176
  .active {
info@54
   177
    margin: 0;
info@54
   178
    width:  12px;
info@54
   179
    height: 12px;
info@54
   180
    background-color: @carousel-indicator-active-bg;
info@54
   181
  }
info@54
   182
}
info@54
   183
info@54
   184
// Optional captions
info@54
   185
// -----------------------------
info@54
   186
// Hidden by default for smaller viewports
info@54
   187
.carousel-caption {
info@54
   188
  position: absolute;
info@54
   189
  left: 15%;
info@54
   190
  right: 15%;
info@54
   191
  bottom: 20px;
info@54
   192
  z-index: 10;
info@54
   193
  padding-top: 20px;
info@54
   194
  padding-bottom: 20px;
info@54
   195
  color: @carousel-caption-color;
info@54
   196
  text-align: center;
info@54
   197
  text-shadow: @carousel-text-shadow;
info@54
   198
  & .btn {
info@54
   199
    text-shadow: none; // No shadow for button elements in carousel-caption
info@54
   200
  }
info@54
   201
}
info@54
   202
info@54
   203
info@54
   204
// Scale up controls for tablets and up
info@54
   205
@media screen and (min-width: @screen-sm-min) {
info@54
   206
info@54
   207
  // Scale up the controls a smidge
info@54
   208
  .carousel-control {
info@54
   209
    .glyphicons-chevron-left,
info@54
   210
    .glyphicons-chevron-right,
info@54
   211
    .icon-prev,
info@54
   212
    .icon-next {
info@54
   213
      width: 30px;
info@54
   214
      height: 30px;
info@54
   215
      margin-top: -15px;
info@54
   216
      margin-left: -15px;
info@54
   217
      font-size: 30px;
info@54
   218
    }
info@54
   219
  }
info@54
   220
info@54
   221
  // Show and left align the captions
info@54
   222
  .carousel-caption {
info@54
   223
    left: 20%;
info@54
   224
    right: 20%;
info@54
   225
    padding-bottom: 30px;
info@54
   226
  }
info@54
   227
info@54
   228
  // Move up the indicators
info@54
   229
  .carousel-indicators {
info@54
   230
    bottom: 20px;
info@54
   231
  }
info@54
   232
}
Impressum Datenschutzerklärung