comparison interfaces/horizontal-sliders.css @ 1088:3705f68a38b7

The version I use and works, addresses issues #1622, #1616, partially #1620
author Giulio Moro <giuliomoro@yahoo.it>
date Mon, 22 Feb 2016 04:17:19 +0000
parents
children c0022a09c4f6
comparison
equal deleted inserted replaced
-1:000000000000 1088:3705f68a38b7
1 /*
2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own!
3 *
4 */
5 body {
6 /* Set the background colour (note US English spelling) to grey*/
7 background-color: #ddd
8 }
9
10 div.pageTitle {
11 width: auto;
12 height: 20px;
13 margin: 10px 0px;
14 }
15
16 div.pageTitle span{
17 font-size: 1.5em;
18 }
19
20 div.testHalt {
21 /* Specify any colouring during the test halt for pre/post questions */
22 background-color: rgba(0,0,0,0.5);
23 /* Don't mess with this bit */
24 z-index: 2;
25 width: 100%;
26 height: 100%;
27 position: absolute;
28 left: 0px;
29 top: 0px;
30 }
31
32 button {
33 /* Specify any button structure or style */
34 min-width: 20px;
35 background-color: #ddd
36 }
37
38 div#slider-holder {
39 height: inherit;
40 position: absolute;
41 left: 0px;
42 z-index: 3;
43 margin-top:25px;
44 }
45
46 div#scale-holder {
47 height: inherit;
48 position: absolute;
49 left: 0px;
50 z-index: 2;
51 }
52
53 div#scale-text-holder {
54 position:relative;
55 float: left;
56 }
57 div.scale-text {
58 position: absolute;
59 font-size: 1.2em;
60 }
61
62 canvas#scale-canvas {
63 position: relative;
64 float: left;
65 }
66
67 div.track-slider {
68 float: left;
69 height: 94px;
70 border: solid;
71 border-width: 1px;
72 border-color: black;
73 padding:2px;
74 margin-left: 94px;
75 margin-bottom: 25px;
76 }
77
78 div.track-slider-title {
79 float: left;
80 padding-top: 40px;
81 width: 100px;
82 }
83
84 button.track-slider-button {
85 float: left;
86 width: 100px;
87 height: 94px;
88 }
89
90
91 button.outside-reference {
92 width:120px;
93 height:20px;
94 margin-bottom:5px;
95 position: absolute;
96 }
97
98 div.track-slider-playing {
99 background-color: #FFDDDD;
100 }
101
102 input.track-slider-range {
103 float: left;
104 margin: 2px 10px;
105 }
106
107 input[type=range]
108 {
109 height: 94px;
110 padding: 0px;
111 color: rgb(255, 144, 144);
112 }
113
114 input[type=range]::-webkit-slider-runnable-track {
115 cursor: pointer;
116 background: #fff;
117 border-radius: 4px;
118 border: 1px solid #000;
119 }
120
121 input[type=range]::-moz-range-track {
122 height: 8px;
123 cursor: pointer;
124 background: #fff;
125 border-radius: 4px;
126 border: 1px solid #000;
127 }
128
129 input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track {
130 background: #aaa;
131 }
132
133 input.track-slider-not-moved[type=range]::-moz-range-track {
134 background: #aaa;
135 }
136
137 div#page-count {
138 float: left;
139 margin: 0px 5px;
140 }
141
142 div#master-volume-holder {
143 position: absolute;
144 top: 10px;
145 left: 120px;
146 }