n@749
|
1 /*
|
n@749
|
2 * Hold any style information for MUSHRA interface. Customise if you like to make the interface your own!
|
n@749
|
3 *
|
n@749
|
4 */
|
n@749
|
5 body {
|
n@749
|
6 /* Set the background colour (note US English spelling) to grey*/
|
n@749
|
7 background-color: #ddd
|
n@749
|
8 }
|
n@749
|
9
|
n@749
|
10 div.pageTitle {
|
n@749
|
11 width: auto;
|
n@749
|
12 height: 20px;
|
n@749
|
13 margin-top: 20px;
|
n@749
|
14 }
|
n@749
|
15
|
n@749
|
16 div.pageTitle span{
|
n@749
|
17 font-size: 1.5em;
|
n@749
|
18 }
|
n@749
|
19
|
n@749
|
20 div.testHalt {
|
n@749
|
21 /* Specify any colouring during the test halt for pre/post questions */
|
n@749
|
22 background-color: rgba(0,0,0,0.5);
|
n@749
|
23 /* Don't mess with this bit */
|
n@749
|
24 z-index: 2;
|
n@749
|
25 width: 100%;
|
n@749
|
26 height: 100%;
|
n@749
|
27 position: absolute;
|
n@749
|
28 left: 0px;
|
n@749
|
29 top: 0px;
|
n@749
|
30 }
|
n@749
|
31
|
n@749
|
32 button {
|
n@749
|
33 /* Specify any button structure or style */
|
n@749
|
34 min-width: 20px;
|
n@749
|
35 background-color: #ddd
|
n@749
|
36 }
|
n@749
|
37
|
n@749
|
38 div#slider-holder {
|
n@749
|
39 height: inherit;
|
n@749
|
40 position: absolute;
|
n@749
|
41 top: 125px;
|
n@749
|
42 left: 0px;
|
n@749
|
43 z-index: 2;
|
n@749
|
44 }
|
n@749
|
45
|
n@749
|
46 div#scale-holder {
|
n@749
|
47 height: inherit;
|
n@749
|
48 position: absolute;
|
n@749
|
49 top: 125px;
|
n@749
|
50 left: 0px;
|
n@749
|
51 z-index: 3;
|
n@749
|
52 }
|
n@749
|
53
|
n@749
|
54 div.track-slider {
|
n@749
|
55 float: left;
|
n@749
|
56 width: 94px;
|
n@749
|
57 border: solid;
|
n@749
|
58 border-width: 1px;
|
n@749
|
59 border-color: black;
|
n@749
|
60 padding:2px;
|
n@749
|
61 margin-left: 50px;
|
n@749
|
62 }
|
n@749
|
63
|
nicholas@751
|
64 div.outside-reference {
|
nicholas@751
|
65 width:120px;
|
nicholas@751
|
66 padding-left: 55px;
|
nicholas@751
|
67 margin-left: 100px;
|
nicholas@751
|
68 height:20px;
|
nicholas@751
|
69 margin-bottom:5px;
|
nicholas@751
|
70 background-color: rgb(100,200,100);
|
nicholas@751
|
71 }
|
nicholas@751
|
72
|
n@749
|
73 div.track-slider-playing {
|
n@749
|
74 background-color: #FFDDDD;
|
n@749
|
75 }
|
n@749
|
76
|
n@749
|
77 input.track-slider-range {
|
n@749
|
78 margin: 2px 0px;
|
n@749
|
79 }
|
n@749
|
80
|
n@749
|
81 input[type=range][orient=vertical]
|
n@749
|
82 {
|
n@749
|
83 writing-mode: bt-lr; /* IE */
|
n@749
|
84 -webkit-appearance: slider-vertical; /* WebKit */
|
n@749
|
85 width: 8px;
|
n@749
|
86 padding: 0 5px;
|
n@749
|
87 color: rgb(255, 144, 144);
|
n@749
|
88 }
|
n@749
|
89
|
n@749
|
90 input[type=range]::-webkit-slider-runnable-track {
|
n@749
|
91 width: 8px;
|
n@749
|
92 cursor: pointer;
|
n@749
|
93 background: #fff;
|
n@749
|
94 border-radius: 4px;
|
n@749
|
95 border: 1px solid #000;
|
n@749
|
96 }
|
n@749
|
97
|
n@749
|
98 input[type=range]::-moz-range-track {
|
n@749
|
99 width: 8px;
|
n@749
|
100 cursor: pointer;
|
n@749
|
101 background: #fff;
|
n@749
|
102 border-radius: 4px;
|
n@749
|
103 border: 1px solid #000;
|
n@749
|
104 }
|
n@749
|
105
|
n@749
|
106 input.track-slider-not-moved[type=range]::-webkit-slider-runnable-track {
|
n@749
|
107 background: #aaa;
|
n@749
|
108 }
|
n@749
|
109
|
n@749
|
110 input.track-slider-not-moved[type=range]::-moz-range-track {
|
n@749
|
111 background: #aaa;
|
n@749
|
112 }
|
n@749
|
113
|
n@749
|
114
|
n@749
|
115 input[type=range]::-moz-range-thumb {
|
n@749
|
116 margin-left: -7px;
|
n@749
|
117 cursor: pointer;
|
n@749
|
118 margin-top: -1px;
|
n@749
|
119 box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
|
n@749
|
120 }
|
n@749
|
121
|
n@749
|
122 input[type=range]::-webkit-slider-thumb {
|
n@749
|
123 cursor: pointer;
|
n@749
|
124 margin-top: -1px;
|
n@749
|
125 margin-left: -4px;
|
n@749
|
126 }
|