Mercurial > hg > webaudioevaluationtool
comparison core.css @ 813:f452455b5977
Resolved #1394: Python returns same XML responses as the PHP server
author | Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk> |
---|---|
date | Fri, 27 Nov 2015 12:09:49 +0000 |
parents | |
children | 888292c88c33 3ba07a441364 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 813:f452455b5977 |
---|---|
1 /* structure.css | |
2 * Define the structure for classes and objects in HTML | |
3 */ | |
4 | |
5 div.title { | |
6 width: 100%; | |
7 height: 50px; | |
8 margin-bottom: 10px; | |
9 font-size: 2em; | |
10 } | |
11 | |
12 div.indicator-box { | |
13 position: absolute; | |
14 left: 150px; | |
15 top: 10px; | |
16 width: 300px; | |
17 height: 60px; | |
18 padding: 20px; | |
19 border-radius: 10px; | |
20 background-color: rgb(100,200,200); | |
21 } | |
22 | |
23 div.comment-div { | |
24 border:#444444; | |
25 border-style:solid; | |
26 border-width:1px; | |
27 max-width: 600px; | |
28 min-width: 400px; | |
29 float: left; | |
30 margin: 5px; | |
31 height: 90px; | |
32 } | |
33 | |
34 div.comment-div span { | |
35 margin-left: 15px; | |
36 } | |
37 | |
38 div.popupHolder { | |
39 width: 500px; | |
40 min-height: 250px; | |
41 max-height: 400px; | |
42 background-color: #fff; | |
43 border-radius: 10px; | |
44 box-shadow: 0px 0px 50px #000; | |
45 z-index: 2; | |
46 } | |
47 | |
48 button.popupButton { | |
49 /* Button for popup window | |
50 */ | |
51 width: 50px; | |
52 height: 25px; | |
53 position: relative; | |
54 border-radius: 5px; | |
55 border: #444; | |
56 border-width: 1px; | |
57 border-style: solid; | |
58 background-color: #fff; | |
59 } | |
60 | |
61 div.testHalt { | |
62 /* Specify any colouring during the test halt for pre/post questions */ | |
63 background-color: rgba(0,0,0,0.5); | |
64 /* Don't mess with this bit */ | |
65 z-index: 2; | |
66 width: 100%; | |
67 height: 100%; | |
68 position: absolute; | |
69 left: 0px; | |
70 top: 0px; | |
71 } | |
72 | |
73 textarea.trackComment { | |
74 max-width: 594px; | |
75 min-width: 350px; | |
76 margin-right:15px; | |
77 max-height: 60px; | |
78 } | |
79 | |
80 div.playhead { | |
81 width: 500px; | |
82 height: 50px; | |
83 background-color: #eee; | |
84 border-radius: 10px; | |
85 padding: 10px; | |
86 } | |
87 | |
88 div.playhead-scrub-track { | |
89 width: 100%; | |
90 height: 10px; | |
91 border-style: solid; | |
92 border-width: 1px; | |
93 } | |
94 | |
95 div#playhead-scrubber { | |
96 width: 10px; | |
97 height: 10px; | |
98 position: relative; | |
99 background-color: #000; | |
100 } |