tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

moz-range-progress-3-ref.html (537B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>Test ::-moz-range-progress</title>
      5    <style>
      6 
      7 input[type=range] {
      8  width: 200px;
      9  height: 20px;
     10  margin: 0;
     11  padding: 0;
     12  background-color: blue;
     13 }
     14 
     15 input[type=range]::-moz-range-track {
     16  border: 0;
     17  height: 10px;
     18  background-color: lime;
     19 }
     20 
     21 input[type=range]::-moz-range-thumb {
     22  width: 10px;
     23  height: 10px;
     24  border: 0;
     25  border-radius: 0;
     26  background-image: none;
     27  background-color: yellow;
     28 }
     29 
     30    </style>
     31  </head>
     32  <body>
     33    <input type=range value=100>
     34  </body>
     35 </html>