| 1 |
|
| 2 |
/* Base; |
| 3 |
* |
| 4 |
*/ |
| 5 |
.noUi-pips, |
| 6 |
.noUi-pips * { |
| 7 |
-moz-box-sizing: border-box; |
| 8 |
box-sizing: border-box; |
| 9 |
} |
| 10 |
.noUi-pips { |
| 11 |
position: absolute; |
| 12 |
font: 400 12px Arial; |
| 13 |
color: #999; |
| 14 |
} |
| 15 |
|
| 16 |
/* Values; |
| 17 |
* |
| 18 |
*/ |
| 19 |
.noUi-value { |
| 20 |
width: 40px; |
| 21 |
position: absolute; |
| 22 |
text-align: center; |
| 23 |
} |
| 24 |
.noUi-value-sub { |
| 25 |
color: #ccc; |
| 26 |
font-size: 10px; |
| 27 |
} |
| 28 |
|
| 29 |
/* Markings; |
| 30 |
* |
| 31 |
*/ |
| 32 |
.noUi-marker { |
| 33 |
position: absolute; |
| 34 |
background: #CCC; |
| 35 |
} |
| 36 |
.noUi-marker-sub { |
| 37 |
background: #AAA; |
| 38 |
} |
| 39 |
.noUi-marker-large { |
| 40 |
background: #AAA; |
| 41 |
} |
| 42 |
|
| 43 |
/* Horizontal layout; |
| 44 |
* |
| 45 |
*/ |
| 46 |
.noUi-pips-horizontal { |
| 47 |
padding: 10px 0; |
| 48 |
height: 50px; |
| 49 |
top: 100%; |
| 50 |
left: 0; |
| 51 |
width: 100%; |
| 52 |
} |
| 53 |
.noUi-value-horizontal { |
| 54 |
margin-left: -20px; |
| 55 |
padding-top: 20px; |
| 56 |
} |
| 57 |
.noUi-value-horizontal.noUi-value-sub { |
| 58 |
padding-top: 15px; |
| 59 |
} |
| 60 |
|
| 61 |
.noUi-marker-horizontal.noUi-marker { |
| 62 |
margin-left: -1px; |
| 63 |
width: 2px; |
| 64 |
height: 5px; |
| 65 |
} |
| 66 |
.noUi-marker-horizontal.noUi-marker-sub { |
| 67 |
height: 10px; |
| 68 |
} |
| 69 |
.noUi-marker-horizontal.noUi-marker-large { |
| 70 |
height: 15px; |
| 71 |
} |
| 72 |
|
| 73 |
/* Vertical layout; |
| 74 |
* |
| 75 |
*/ |
| 76 |
.noUi-pips-vertical { |
| 77 |
padding: 0 10px; |
| 78 |
height: 100%; |
| 79 |
top: 0; |
| 80 |
left: 100%; |
| 81 |
} |
| 82 |
.noUi-value-vertical { |
| 83 |
width: 15px; |
| 84 |
margin-left: 20px; |
| 85 |
margin-top: -5px; |
| 86 |
} |
| 87 |
|
| 88 |
.noUi-marker-vertical.noUi-marker { |
| 89 |
width: 5px; |
| 90 |
height: 2px; |
| 91 |
margin-top: -1px; |
| 92 |
} |
| 93 |
.noUi-marker-vertical.noUi-marker-sub { |
| 94 |
width: 10px; |
| 95 |
} |
| 96 |
.noUi-marker-vertical.noUi-marker-large { |
| 97 |
width: 15px; |
| 98 |
} |
| 99 |
|