Sha256: dc955befa20e4545f51eddd3f449f82c9ef0bfe6d8ee86153a766af445b79ee1

Contents?: true

Size: 672 Bytes

Versions: 1

Compression:

Stored size: 672 Bytes

Contents

//
// Slider styles (to be used with sliders.js)
// --------------------------------------------------

// Width of slider
.slider {
  width: 100%;
}

// Outer wrapper for slider
.slider {
  overflow: hidden;
  background-color: #000;

  // Inner wrapper for slider (width of all slides together)
  .slide-group {
    position: relative;
    font-size: 0; // Remove spaces from inline-block children
    white-space: nowrap;
    @include transition(all 0s linear);

    // Individual slide
    .slide {
      display: inline-block;
      width: 100%;
      height: 100%;
      font-size: 14px;
      vertical-align: top; // Ensure that li always aligns to top
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ratchet-sass-2.0.2 vendor/assets/stylesheets/sliders.scss