Subversion Repositories VORC

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
105 bgadell 1
datalist {
2
  display: flex;
3
  flex-direction: column;
4
  justify-content: space-between;
5
  writing-mode: vertical-lr;
6
  width: 400px;
7
}
8
 
9
option {
10
  padding: 0;
11
}
12
 
13
input[type="range"] {
14
  width: 400px;
15
  margin: 5px;
16
}
17
 
18
.slidecontainer {
19
  width: 100%;
20
}
21
 
22
.rangeslider {
23
  width: 100%;
24
  height: 15px;
25
  border-radius: 5px;
26
  background-image: linear-gradient(to right, rgba(255, 0, 0, 0.7), rgba(0, 128, 0, 0.7));
27
  outline: none;
28
  opacity: 0.7;
29
  transition: opacity .2s;
30
  -webkit-transition: .2s;
31
  -webkit-appearance: none;
32
}
33
 
34
.rangeslider:hover {
35
   background-image: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(0, 128, 0, 1));
36
}
37
 
38
.rangeslider::-webkit-slider-thumb {
39
  -webkit-appearance: none;
40
  appearance: none;
41
  width: 24px;
42
  height: 25px;
43
  border: 0;
44
  background: url("/images/handslider.png");
45
  background-size: 24px 25px;
46
  background-position: 25%;
47
  cursor: pointer;
48
}
49
 
50
.rangeslider::-moz-range-thumb {
51
  width: 24px;
52
  height: 25px;
53
  border: 0;
54
  background: url("/images/handslider.png");
55
  background-size: 24px 25px;
56
  cursor: pointer;
57
}
58
 
59
.saved {
60
  background: none repeat scroll 0 0 #288a27;
61
	border-radius: 3px 3px 3px 3px;
62
  height: 30px;
63
  max-width: 25%;
64
  position: absolute;
65
  top: 100px;
66
  z-index: 5;
67
  color: white;
68
  text-shadow: 2px 2px 4px #000000;
69
	font-weight: bold;
70
  text-align: center;
71
  padding: 10px 5px 5px 5px;
72
  -webkit-animation-duration: 10s;animation-duration: 10s;
73
  -webkit-animation-fill-mode: both;animation-fill-mode: both;
74
}
75
 
76
@-webkit-keyframes fadeOut {
77
  0% {opacity: 1;}
78
  100% {opacity: 0;}
79
}
80
 
81
@keyframes fadeOut {
82
  0% {opacity: 1;}
83
  100% {opacity: 0;}
84
}
85
 
86
.fadeOut {
87
  -webkit-animation-name: fadeOut;
88
  animation-name: fadeOut;
89
}