Mercurial > hg > webaudioevaluationtool
comparison ape.css @ 905:b64ddb277eb0
Merge from the default branch
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Thu, 04 Jun 2015 10:36:05 +0100 |
parents | |
children | 4a0bfa7bef24 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 905:b64ddb277eb0 |
---|---|
1 /* | |
2 * Hold any style information for APE 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.title { | |
11 /* Specify any colouring for the title */ | |
12 } | |
13 | |
14 div.pageTitle { | |
15 width: auto; | |
16 height: 20px; | |
17 margin-top: 20px; | |
18 } | |
19 | |
20 div.pageTitle span{ | |
21 font-size: 1.5em; | |
22 } | |
23 | |
24 div.testHalt { | |
25 /* Specify any colouring during the test halt for pre/post questions */ | |
26 background-color: rgba(0,0,0,0.5); | |
27 /* Don't mess with this bit */ | |
28 z-index: 2; | |
29 width: 100%; | |
30 height: 100%; | |
31 position: absolute; | |
32 left: 0px; | |
33 top: 0px; | |
34 } | |
35 | |
36 button { | |
37 /* Specify any button structure or style */ | |
38 min-width: 20px; | |
39 background-color: #ddd | |
40 } | |
41 | |
42 div#slider { | |
43 /* Specify any structure for the slider holder interface */ | |
44 background-color: #eee; | |
45 height: 150px; | |
46 margin-bottom: 5px; | |
47 } | |
48 | |
49 div.sliderScale { | |
50 width: 100%; | |
51 min-height: 30px; | |
52 } | |
53 | |
54 div.sliderScale span{ | |
55 font-size: 1.2em; | |
56 } | |
57 | |
58 div.sliderScale span { | |
59 /* Any formatting of text below scale */ | |
60 min-width: 5px; | |
61 height: 20px; | |
62 height: 100%; | |
63 position: absolute; | |
64 } | |
65 | |
66 div.track-slider { | |
67 /* Specify any structure for the slider objects */ | |
68 position: absolute; | |
69 height: inherit; | |
70 width: 12px; | |
71 float: left; | |
72 background-color: rgb(100,200,100); | |
73 } | |
74 | |
75 div.track-slider-playing { | |
76 background-color: #FF0000; | |
77 } | |
78 | |
79 div.comment-box-playing { | |
80 background-color: #FFDDDD; | |
81 } | |
82 |