mirror of https://github.com/twbs/ratchet.git
Build mobile apps with simple HTML, CSS, and JS components.
http://goratchet.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
671 B
31 lines
671 B
// |
|
// 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 0 linear); |
|
|
|
// Individual slide |
|
.slide { |
|
display: inline-block; |
|
vertical-align: top; // Ensure that li always aligns to top |
|
width: 100%; |
|
height: 100%; |
|
font-size: 14px; |
|
} |
|
} |
|
}
|
|
|