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.

32 lines
672 B

11 years ago
//
// Slider styles (to be used with sliders.js)
// --------------------------------------------------
12 years ago
// Width of slider
11 years ago
.slider {
12 years ago
width: 100%;
}
// Outer wrapper for slider
12 years ago
.slider {
overflow: hidden;
background-color: #000;
11 years ago
// Inner wrapper for slider (width of all slides together)
11 years ago
.slide-group {
11 years ago
position: relative;
font-size: 0; // Remove spaces from inline-block children
white-space: nowrap;
@include transition(all 0s linear);
11 years ago
// Individual slide
.slide {
11 years ago
display: inline-block;
width: 100%;
11 years ago
height: 100%;
11 years ago
font-size: 14px;
vertical-align: top; // Ensure that li always aligns to top
11 years ago
}
}
11 years ago
}