/ embark-ui / src / slider.css
slider.css
  1  .slider {
  2    -webkit-appearance: none;
  3    width: 100%;
  4    background: transparent;
  5  }
  6  
  7  .slider::-webkit-slider-thumb {
  8    -webkit-appearance: none;
  9  }
 10  
 11  .slider:focus {
 12    outline: none;
 13  }
 14  
 15  .slider::-ms-track {
 16    width: 100%;
 17    cursor: pointer;
 18  
 19    background: transparent;
 20    border-color: transparent;
 21    color: transparent;
 22  }
 23  
 24  .slider::-webkit-slider-thumb {
 25    -webkit-appearance: none;
 26    border: 1px solid #bcbcbe;
 27    height: 20px;
 28    width: 10px;
 29    border-radius: 1px;
 30    background: #d0d0d0;
 31    cursor: pointer;
 32    margin-top: -6px;
 33  }
 34  
 35  .slider:active::-webkit-slider-thumb {
 36    background-color: #4e5b60;
 37    border: 1px solid #383739;
 38  }
 39  
 40  .slider::-moz-range-thumb {
 41    -webkit-appearance: none;
 42    border: 1px solid #bcbcbe;
 43    height: 20px;
 44    width: 10px;
 45    border-radius: 1px;
 46    background: #d0d0d0;
 47    cursor: pointer;
 48    margin-top: -6px;
 49  }
 50  
 51  .slider:active::-moz-range-thumb {
 52    background-color: #4e5b60;
 53    border: 1px solid #383739;
 54  }
 55  
 56  .slider::-ms-thumb {
 57    -webkit-appearance: none;
 58    border: 1px solid #bcbcbe;
 59    height: 20px;
 60    width: 10px;
 61    border-radius: 1px;
 62    background: #d0d0d0;
 63    cursor: pointer;
 64    margin-top: -6px;
 65  }
 66  
 67  .slider:active::-ms-thumb {
 68    background-color: #4e5b60;
 69    border: 1px solid #383739;
 70  }
 71  
 72  .slider::-webkit-slider-runnable-track {
 73    width: 99%;
 74    height: 8.4px;
 75    cursor: pointer;
 76    background: #236089;
 77    border-radius: 4px;
 78    border: 0.2px solid #010101;
 79  }
 80  
 81  .slider:active::-webkit-slider-runnable-track {
 82    background: #266d99;
 83  }
 84  
 85  .slider::-moz-range-track {
 86    width: 99%;
 87    height: 8.4px;
 88    cursor: pointer;
 89    background: #236089;
 90    border-radius: 4px;
 91    border: 0.2px solid #010101;
 92  }
 93  
 94  .slider::-ms-track {
 95    width: 99%;
 96    height: 8.4px;
 97    cursor: pointer;
 98    background: #236089;
 99    border-radius: 4px;
100    border: 0.2px solid #010101;
101  }
102