master
1/**
2 * Here's where everything gets included. You don't need
3 * to change anything here, and doing so might break
4 * stuff. Here be dragons and all that.
5 */
6/**
7 * Default variables
8 *
9 * While these can be set with JavaScript, it's probably
10 * better and faster to just set them here, compile to
11 * CSS and include that instead to use some of that
12 * hardware-accelerated goodness.
13 */
14.unslider-nav ol {
15 list-style: none;
16 text-align: center;
17}
18.unslider-nav ol li {
19 display: inline-block;
20 width: 6px;
21 height: 6px;
22 margin: 0 4px;
23 background: transparent;
24 border-radius: 5px;
25 overflow: hidden;
26 text-indent: -999em;
27 border: 2px solid #fff;
28 cursor: pointer;
29}
30.unslider-nav ol li.unslider-active {
31 background: #fff;
32 cursor: default;
33}