comparison mushra.css @ 1392:4a0c4119e00d

Bug #1486: Fixed rogue '+' appearing in move slider alert. Unlabelled axis have default of 'Axis ' and their index.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Thu, 17 Dec 2015 13:03:39 +0000
parents
children 6e01da7f9f92
comparison
equal deleted inserted replaced
-1:000000000000 1392:4a0c4119e00d
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-top: 20px;
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
39 div.track-slider {
40 float: left;
41 width: 94px;
42 border: solid;
43 border-width: 1px;
44 border-color: black;
45 padding:2px;
46 }
47
48 input[type=range][orient=vertical]
49 {
50 writing-mode: bt-lr; /* IE */
51 -webkit-appearance: slider-vertical; /* WebKit */
52 width: 8px;
53 height: 175px;
54 padding: 0 5px;
55 }