| 1 |
.betterdcos-range-slider { |
| 2 |
width: 100%; |
| 3 |
} |
| 4 |
|
| 5 |
.betterdcos-range-slider__range { |
| 6 |
-webkit-appearance: none; |
| 7 |
width: calc(100% - (95px)); |
| 8 |
height: 10px; |
| 9 |
border-radius: 5px; |
| 10 |
background: #d7dcdf; |
| 11 |
outline: none; |
| 12 |
padding: 0; |
| 13 |
margin: 0; |
| 14 |
} |
| 15 |
|
| 16 |
.betterdcos-range-slider__range::-webkit-slider-thumb { |
| 17 |
-webkit-appearance: none; |
| 18 |
appearance: none; |
| 19 |
width: 20px; |
| 20 |
height: 20px; |
| 21 |
border-radius: 50%; |
| 22 |
background: #15c7a4; |
| 23 |
cursor: pointer; |
| 24 |
-webkit-transition: background .15s ease-in-out; |
| 25 |
transition: background .15s ease-in-out; |
| 26 |
} |
| 27 |
|
| 28 |
.betterdcos-range-slider__range::-webkit-slider-thumb:hover { |
| 29 |
background: #15c7a4; |
| 30 |
} |
| 31 |
|
| 32 |
.betterdcos-range-slider__range:active::-webkit-slider-thumb { |
| 33 |
background: #15c7a4; |
| 34 |
} |
| 35 |
|
| 36 |
.betterdcos-range-slider__range::-moz-range-thumb { |
| 37 |
width: 20px; |
| 38 |
height: 20px; |
| 39 |
border: 0; |
| 40 |
border-radius: 50%; |
| 41 |
background: #15c7a4; |
| 42 |
cursor: pointer; |
| 43 |
-webkit-transition: background .15s ease-in-out; |
| 44 |
transition: background .15s ease-in-out; |
| 45 |
} |
| 46 |
|
| 47 |
.betterdcos-range-slider__range::-moz-range-thumb:hover { |
| 48 |
background: #1abc9c; |
| 49 |
} |
| 50 |
|
| 51 |
.betterdcos-range-slider__range:active::-moz-range-thumb { |
| 52 |
background: #1abc9c; |
| 53 |
} |
| 54 |
|
| 55 |
.betterdcos-range-slider__value { |
| 56 |
display: inline-block; |
| 57 |
position: relative; |
| 58 |
width: 58px; |
| 59 |
color: #fff; |
| 60 |
line-height: 20px; |
| 61 |
text-align: center; |
| 62 |
border-radius: 3px; |
| 63 |
background: #15c7a4; |
| 64 |
padding: 5px 10px; |
| 65 |
margin-left: 8px; |
| 66 |
} |
| 67 |
|
| 68 |
.betterdcos-range-slider__value:after { |
| 69 |
position: absolute; |
| 70 |
top: 8px; |
| 71 |
left: -7px; |
| 72 |
width: 0; |
| 73 |
height: 0; |
| 74 |
border-top: 7px solid transparent; |
| 75 |
border-right: 7px solid #15c7a4; |
| 76 |
border-bottom: 7px solid transparent; |
| 77 |
content: ''; |
| 78 |
} |
| 79 |
|
| 80 |
::-moz-range-track { |
| 81 |
background: #d7dcdf; |
| 82 |
border: 0; |
| 83 |
} |
| 84 |
|
| 85 |
input::-moz-focus-inner, input::-moz-focus-outer { |
| 86 |
border: 0; |
| 87 |
} |
| 88 |
|