Subversion Repositories VORC

Rev

Blame | Last modification | View Log | RSS feed

datalist {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  writing-mode: vertical-lr;
  width: 400px;
}

option {
  padding: 0;
}

input[type="range"] {
  width: 400px; 
  margin: 5px;
}

.slidecontainer {
  width: 100%;
}

.rangeslider {
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background-image: linear-gradient(to right, rgba(255, 0, 0, 0.7), rgba(0, 128, 0, 0.7));
  outline: none;
  opacity: 0.7;
  transition: opacity .2s;
  -webkit-transition: .2s;
  -webkit-appearance: none;
}

.rangeslider:hover {
   background-image: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(0, 128, 0, 1));
}

.rangeslider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 25px;
  border: 0;
  background: url("/images/handslider.png"); 
  background-size: 24px 25px;
  background-position: 25%;
  cursor: pointer;
}

.rangeslider::-moz-range-thumb {
  width: 24px;
  height: 25px;
  border: 0;
  background: url("/images/handslider.png"); 
  background-size: 24px 25px;
  cursor: pointer;
}

.saved {
  background: none repeat scroll 0 0 #288a27;
        border-radius: 3px 3px 3px 3px;
  height: 30px;
  max-width: 25%;
  position: absolute;
  top: 100px;
  z-index: 5;
  color: white;
  text-shadow: 2px 2px 4px #000000;
        font-weight: bold;
  text-align: center;
  padding: 10px 5px 5px 5px;
  -webkit-animation-duration: 10s;animation-duration: 10s;
  -webkit-animation-fill-mode: both;animation-fill-mode: both;
}
         
@-webkit-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}
         
@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}
         
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}