comparison ape.css @ 767:d7f2912bf487

test_create: Specification Node handles complete XML to DOM and DOM to XML conversions
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Fri, 04 Dec 2015 18:34:04 +0000
parents
children 0795031754d7 1b6fa37d46a4
comparison
equal deleted inserted replaced
-1:000000000000 767:d7f2912bf487
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 button {
25 /* Specify any button structure or style */
26 min-width: 20px;
27 background-color: #ddd
28 }
29
30 div#slider {
31 /* Specify any structure for the slider holder interface */
32 background-color: #eee;
33 height: 150px;
34 margin-bottom: 5px;
35 }
36
37 div.sliderScale {
38 width: 100%;
39 min-height: 30px;
40 }
41
42 div.sliderScale span {
43 /* Any formatting of text below scale */
44 font-size: 1.2em;
45 min-width: 5px;
46 height: 20px;
47 position: absolute;
48 }
49
50 div.track-slider {
51 /* Specify any structure for the slider objects */
52 position: absolute;
53 height: inherit;
54 width: 12px;
55 float: left;
56 background-color: rgb(100,200,100);
57 }
58
59 div#outside-reference {
60 width:120px;
61 padding-left: 55px;
62 margin-left: 100px;
63 height:20px;
64 margin-bottom:5px;
65 background-color: rgb(100,200,100);
66 }
67
68 div.track-slider-disabled {
69 background-color: rgb(100,100,100);
70 }
71
72 div.track-slider-playing {
73 background-color: #FF0000;
74 }
75
76 div.comment-box-playing {
77 background-color: #FFDDDD;
78 }