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.
37 lines
810 B
37 lines
810 B
12 years ago
|
/* Slider styles (to be used with sliders.js)
|
||
|
-------------------------------------------------- */
|
||
|
|
||
|
/* Width/height of slider */
|
||
|
.slider,
|
||
|
.slider > li {
|
||
|
width: 100%;
|
||
|
height: 200px;
|
||
|
}
|
||
|
|
||
|
/* Outer wrapper for slider */
|
||
|
.slider {
|
||
|
overflow: hidden;
|
||
|
background-color: #000;
|
||
|
}
|
||
|
|
||
|
/* Inner wrapper for slider (width of all slides together) */
|
||
|
.slider > ul {
|
||
|
position: relative;
|
||
|
font-size: 0; /* Remove spaces from inline-block children */
|
||
|
white-space: nowrap;
|
||
|
-webkit-transition: all 0 linear;
|
||
|
transition: all 0 linear;
|
||
|
}
|
||
|
|
||
|
/* Individual slide */
|
||
|
.slider > ul > li {
|
||
|
display: inline-block;
|
||
|
vertical-align: top; /* Ensure that li always aligns to top */
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
/* Required reset of font-size to same as standard body */
|
||
|
.slider > ul > li > * {
|
||
|
font-size: 14px;
|
||
|
}
|