Mercurial > hg > webaudioevaluationtool
comparison interfaces/mushra.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 } | |
44 | |
45 div#scale-holder { | |
46 height: inherit; | |
47 position: absolute; | |
48 left: 0px; | |
49 z-index: 2; | |
50 } | |
51 | |
52 div#scale-text-holder { | |
53 position:relative; | |
54 width: 100px; | |
55 float: left; | |
56 } | |
57 div.scale-text { | |
58 position: absolute; | |
59 } | |
60 | |
61 canvas#scale-canvas { | |
62 position: relative; | |
63 float: left; | |
64 } | |
65 | |
66 div.track-slider { | |
67 float: left; | |
68 width: 94px; | |
69 border: solid; | |
70 border-width: 1px; | |
71 border-color: black; | |
72 padding:2px; | |
73 margin-left: 50px; | |
74 } | |
75 | |
76 button.outside-reference { | |
77 width:120px; | |
78 height:20px; | |
79 margin-bottom:5px; | |
80 position: absolute; | |
81 } | |
82 | |
83 div.track-slider-playing { | |
84 background-color: #FFDDDD; | |
85 } | |
86 | |
87 input.track-slider-range { | |
88 margin: 2px 0px; | |
89 } | |
90 | |
91 input[type=range][orient=vertical] | |
92 { | |
93 writing-mode: bt-lr; /* IE */ | |
94 -webkit-appearance: slider-vertical; /* WebKit */ | |
95 width: 8px; | |
96 padding: 0 5px; | |
97 color: rgb(255, 144, 144); | |
98 } | |
99 | |
100 input[type=range]::-webkit-slider-runnable-track { | |
101 width: 8px; | |
102 cursor: pointer; | |
103 background: #fff; | |
104 border-radius: 4px; | |
105 border: 1px solid #000; | |
106 } | |
107 | |
108 input[type=range]::-moz-range-track { | |
109 width: 8px; | |
110 cursor: pointer; | |
111 background: #fff; | |
112 border-radius: 4px; | |
113 border: 1px solid #000; | |
114 } | |
115 | |
116 input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track { | |
117 background: #aaa; | |
118 } | |
119 | |
120 input.track-slider-not-moved[type=range]::-moz-range-track { | |
121 background: #aaa; | |
122 } | |
123 | |
124 | |
125 input[type=range]::-moz-range-thumb { | |
126 margin-left: -7px; | |
127 cursor: pointer; | |
128 margin-top: -1px; | |
129 box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; | |
130 } | |
131 | |
132 input[type=range]::-webkit-slider-thumb { | |
133 cursor: pointer; | |
134 margin-top: -1px; | |
135 margin-left: -4px; | |
136 } | |
137 | |
138 div#page-count { | |
139 float: left; | |
140 margin: 0px 5px; | |
141 } | |
142 | |
143 div#master-volume-holder { | |
144 position: absolute; | |
145 top: 10px; | |
146 left: 120px; | |
147 } |