nickjillings@1341
|
1 /*
|
nickjillings@1341
|
2 * Hold any style information for APE interface. Customise if you like to make the interface your own!
|
nickjillings@1341
|
3 *
|
nickjillings@1341
|
4 */
|
nicholas@2538
|
5
|
nickjillings@1341
|
6 body {
|
nicholas@2538
|
7 /* Set the background colour (note US English spelling) to grey*/
|
nicholas@2538
|
8 background-color: #ddd
|
nickjillings@1341
|
9 }
|
nickjillings@1341
|
10 div.title {
|
nicholas@2538
|
11 /* Specify any colouring for the title */
|
nickjillings@1341
|
12 }
|
nickjillings@1341
|
13 div.pageTitle {
|
nicholas@2538
|
14 width: auto;
|
nicholas@2538
|
15 height: 20px;
|
nicholas@2538
|
16 margin-top: 5px;
|
nicholas@2538
|
17 margin-bottom: 10px;
|
nickjillings@1341
|
18 }
|
nicholas@2538
|
19 div.pageTitle span {
|
nicholas@2538
|
20 font-size: 1.5em;
|
nickjillings@1341
|
21 }
|
nickjillings@1341
|
22 button {
|
nicholas@2538
|
23 /* Specify any button structure or style */
|
nicholas@2538
|
24 min-width: 20px;
|
nicholas@2538
|
25 background-color: #ddd
|
nickjillings@1341
|
26 }
|
nickjillings@1341
|
27 div.slider {
|
nicholas@2538
|
28 /* Specify any structure for the slider holder interface */
|
nicholas@2538
|
29 background-color: #eee;
|
nicholas@2538
|
30 height: 150px;
|
nicholas@2538
|
31 margin: 5px 50px;
|
nicholas@2538
|
32 -moz-user-select: -moz-none;
|
nicholas@2538
|
33 -khtml-user-select: none;
|
nicholas@2538
|
34 -webkit-user-select: none;
|
nickjillings@1341
|
35 }
|
nickjillings@1341
|
36 div.sliderScale {
|
nicholas@2538
|
37 width: 100%;
|
nicholas@2538
|
38 min-height: 30px;
|
nicholas@2538
|
39 -moz-user-select: -moz-none;
|
nicholas@2538
|
40 -khtml-user-select: none;
|
nicholas@2538
|
41 -webkit-user-select: none;
|
nickjillings@1341
|
42 }
|
nickjillings@1341
|
43 div.sliderScale span {
|
nicholas@2538
|
44 /* Any formatting of text below scale */
|
nicholas@2538
|
45 font-size: 1.2em;
|
nicholas@2538
|
46 min-width: 5px;
|
nicholas@2391
|
47 max-width: 100px;
|
nicholas@2391
|
48 text-align: center;
|
nicholas@2538
|
49 height: 20px;
|
nicholas@2538
|
50 position: absolute;
|
nickjillings@1341
|
51 }
|
nickjillings@1341
|
52 div.track-slider {
|
nicholas@2538
|
53 /* Specify any structure for the slider objects */
|
nicholas@2538
|
54 position: absolute;
|
nicholas@2538
|
55 height: inherit;
|
nicholas@2538
|
56 width: 12px;
|
nicholas@2538
|
57 float: left;
|
nicholas@2538
|
58 background-color: rgb(100, 200, 100);
|
nicholas@2538
|
59 -moz-user-select: -moz-none;
|
nicholas@2538
|
60 -khtml-user-select: none;
|
nicholas@2538
|
61 -webkit-user-select: none;
|
nickjillings@1296
|
62 border: 1px solid black;
|
nickjillings@1341
|
63 }
|
nicholas@2396
|
64 div#outside-reference-holder {
|
nicholas@2396
|
65 display: flex;
|
nicholas@2396
|
66 align-content: center;
|
nicholas@2396
|
67 justify-content: center;
|
nicholas@2396
|
68 margin-bottom: 5px;
|
nicholas@2396
|
69 }
|
nickjillings@1341
|
70 div.outside-reference {
|
nicholas@2538
|
71 width: 120px;
|
nicholas@2396
|
72 text-align: center;
|
nicholas@2538
|
73 height: 20px;
|
nicholas@2538
|
74 background-color: rgb(100, 200, 100);
|
nicholas@2396
|
75 position: inherit;
|
nicholas@2396
|
76 margin: 0px 5px;
|
nickjillings@1341
|
77 }
|
nickjillings@1341
|
78 div.track-slider-disabled {
|
nicholas@2538
|
79 background-color: rgb(100, 100, 100);
|
nickjillings@1341
|
80 }
|
nickjillings@1341
|
81 div.track-slider-playing {
|
nicholas@2538
|
82 background-color: #FF0000;
|
nickjillings@1341
|
83 }
|
nickjillings@1341
|
84 div.comment-box-playing {
|
nicholas@2538
|
85 background-color: #FFDDDD;
|
nickjillings@1341
|
86 }
|
nickjillings@1356
|
87 div#master-volume-holder {
|
nickjillings@1356
|
88 position: absolute;
|
nickjillings@1356
|
89 top: 10px;
|
nickjillings@1356
|
90 left: 120px;
|
nicholas@2538
|
91 }
|