Mercurial > hg > webaudioevaluationtool
comparison core.css @ 1088:3705f68a38b7
The version I use and works, addresses issues #1622, #1616, partially #1620
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Mon, 22 Feb 2016 04:17:19 +0000 |
parents | |
children | b5bf2f57187c a4ad9e55b5b8 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 1088:3705f68a38b7 |
---|---|
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:1px solid #444444; | |
25 max-width: 600px; | |
26 min-width: 400px; | |
27 float: left; | |
28 margin: 5px 10px 5px 5px; | |
29 height: 90px; | |
30 border-radius: 10px; | |
31 } | |
32 | |
33 div.comment-div span { | |
34 margin-left: 15px; | |
35 } | |
36 | |
37 div.popupHolder { | |
38 width: 500px; | |
39 min-height: 250px; | |
40 max-height: 400px; | |
41 background-color: #fff; | |
42 border-radius: 10px; | |
43 box-shadow: 0px 0px 50px #000; | |
44 z-index: 2; | |
45 position: absolute; | |
46 } | |
47 | |
48 div#popupContent { | |
49 margin-top: 20px; | |
50 margin-bottom: 5px; | |
51 } | |
52 | |
53 div#popupTitle { | |
54 width: inherit; | |
55 min-height: 25px; | |
56 max-height: 250px; | |
57 overflow: auto; | |
58 margin-bottom: 5px; | |
59 } | |
60 | |
61 div#popupResponse { | |
62 width: inherit; | |
63 min-height: 50px; | |
64 max-height: 320px; | |
65 overflow: auto; | |
66 position: relative; | |
67 } | |
68 | |
69 button.popupButton { | |
70 /* Button for popup window | |
71 */ | |
72 width: 50px; | |
73 height: 25px; | |
74 position: absolute; | |
75 border-radius: 5px; | |
76 border: #444; | |
77 border-width: 1px; | |
78 border-style: solid; | |
79 background-color: #fff; | |
80 } | |
81 | |
82 button#popup-proceed { | |
83 bottom: 10px; | |
84 right: 10px; | |
85 } | |
86 | |
87 button#popup-previous { | |
88 bottom: 10px; | |
89 left: 10px; | |
90 } | |
91 | |
92 div.testHalt { | |
93 /* Specify any colouring during the test halt for pre/post questions */ | |
94 background-color: rgba(0,0,0,0.5); | |
95 /* Don't mess with this bit */ | |
96 z-index: 2; | |
97 width: 100%; | |
98 height: 100%; | |
99 position: absolute; | |
100 left: 0px; | |
101 top: 0px; | |
102 } | |
103 | |
104 textarea.trackComment { | |
105 max-width: 594px; | |
106 min-width: 350px; | |
107 max-height: 60px; | |
108 resize: none; | |
109 } | |
110 | |
111 div.playhead { | |
112 width: 500px; | |
113 height: 50px; | |
114 background-color: #eee; | |
115 border-radius: 10px; | |
116 padding: 10px; | |
117 } | |
118 | |
119 div.playhead-scrub-track { | |
120 width: 100%; | |
121 height: 10px; | |
122 border-style: solid; | |
123 border-width: 1px; | |
124 } | |
125 | |
126 div#playhead-scrubber { | |
127 width: 10px; | |
128 height: 10px; | |
129 position: relative; | |
130 background-color: #000; | |
131 } | |
132 | |
133 div#master-volume-holder { | |
134 width: 250px; | |
135 float: left; | |
136 border: black 1px solid; | |
137 border-radius: 5px; | |
138 padding: 5px; | |
139 } | |
140 | |
141 input#master-volume-control { | |
142 width: 200px; | |
143 height: 25px; | |
144 float: left; | |
145 margin: 0px; | |
146 padding: 0px; | |
147 } | |
148 | |
149 span#master-volume-feedback { | |
150 width: 45px; | |
151 height: 25px; | |
152 margin-left: 5px; | |
153 float: left; | |
154 } |