comparison ape.css @ 893:c40ce9c67b6b

Merge from the default branch
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Wed, 10 Jun 2015 14:39:15 +0100
parents
children 2986718bc7b8 4e9ab4f92f20
comparison
equal deleted inserted replaced
-1:000000000000 893:c40ce9c67b6b
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 /* Any formatting of text below scale */
56 font-size: 1.2em;
57 min-width: 5px;
58 height: 20px;
59 position: absolute;
60 }
61
62 div.track-slider {
63 /* Specify any structure for the slider objects */
64 position: absolute;
65 height: inherit;
66 width: 12px;
67 float: left;
68 background-color: rgb(100,200,100);
69 }
70
71 div.track-slider-playing {
72 background-color: #FF0000;
73 }
74
75 div.comment-box-playing {
76 background-color: #FFDDDD;
77 }
78