n@156
|
1 /* structure.css
|
n@156
|
2 * Define the structure for classes and objects in HTML
|
n@156
|
3 */
|
n@156
|
4
|
n@156
|
5 div.title {
|
n@156
|
6 width: 100%;
|
n@156
|
7 height: 50px;
|
n@156
|
8 margin-bottom: 10px;
|
n@156
|
9 font-size: 2em;
|
n@156
|
10 }
|
n@156
|
11
|
n@156
|
12 div.indicator-box {
|
n@156
|
13 position: absolute;
|
n@156
|
14 left: 150px;
|
n@156
|
15 top: 10px;
|
n@156
|
16 width: 300px;
|
n@156
|
17 height: 60px;
|
n@156
|
18 padding: 20px;
|
n@156
|
19 border-radius: 10px;
|
n@156
|
20 background-color: rgb(100,200,200);
|
n@156
|
21 }
|
n@156
|
22
|
n@156
|
23 div.comment-div {
|
n@509
|
24 border:1px solid #444444;
|
n@302
|
25 max-width: 600px;
|
n@301
|
26 min-width: 400px;
|
n@156
|
27 float: left;
|
n@509
|
28 margin: 5px 10px 5px 5px;
|
n@193
|
29 height: 90px;
|
n@509
|
30 border-radius: 10px;
|
n@156
|
31 }
|
n@156
|
32
|
n@156
|
33 div.comment-div span {
|
n@156
|
34 margin-left: 15px;
|
n@156
|
35 }
|
n@156
|
36
|
n@156
|
37 div.popupHolder {
|
n@156
|
38 width: 500px;
|
n@303
|
39 min-height: 250px;
|
n@303
|
40 max-height: 400px;
|
n@156
|
41 background-color: #fff;
|
n@156
|
42 border-radius: 10px;
|
n@156
|
43 box-shadow: 0px 0px 50px #000;
|
n@156
|
44 z-index: 2;
|
n@510
|
45 position: absolute;
|
n@510
|
46 }
|
n@510
|
47
|
n@510
|
48 div#popupContent {
|
n@510
|
49 margin-top: 20px;
|
n@625
|
50 margin-bottom: 35px;
|
n@510
|
51 }
|
n@510
|
52
|
n@510
|
53 div#popupTitle {
|
n@510
|
54 width: inherit;
|
n@510
|
55 min-height: 25px;
|
n@510
|
56 max-height: 250px;
|
n@510
|
57 overflow: auto;
|
n@510
|
58 margin-bottom: 5px;
|
n@510
|
59 }
|
n@510
|
60
|
n@510
|
61 div#popupResponse {
|
n@510
|
62 width: inherit;
|
n@510
|
63 min-height: 50px;
|
n@510
|
64 max-height: 320px;
|
n@510
|
65 overflow: auto;
|
n@513
|
66 position: relative;
|
n@156
|
67 }
|
n@156
|
68
|
n@156
|
69 button.popupButton {
|
n@156
|
70 /* Button for popup window
|
n@156
|
71 */
|
n@156
|
72 width: 50px;
|
n@156
|
73 height: 25px;
|
n@502
|
74 position: absolute;
|
n@156
|
75 border-radius: 5px;
|
n@156
|
76 border: #444;
|
n@156
|
77 border-width: 1px;
|
n@156
|
78 border-style: solid;
|
n@156
|
79 background-color: #fff;
|
n@156
|
80 }
|
n@156
|
81
|
n@636
|
82 div.popup-option-checbox {
|
n@636
|
83 /* Popup window checkbox */
|
n@636
|
84 padding: 5px;
|
n@636
|
85 width: fit-content;
|
n@636
|
86 width: -moz-fit-content;
|
n@636
|
87 width: -webkit-fit-content;
|
n@636
|
88 }
|
n@636
|
89
|
n@636
|
90 div.popup-option-checbox input{
|
n@636
|
91 /* Popup window checkbox */
|
n@636
|
92 margin-right: 15px;
|
n@636
|
93 }
|
n@636
|
94
|
n@502
|
95 button#popup-proceed {
|
n@502
|
96 bottom: 10px;
|
n@502
|
97 right: 10px;
|
n@502
|
98 }
|
n@502
|
99
|
n@502
|
100 button#popup-previous {
|
n@502
|
101 bottom: 10px;
|
n@502
|
102 left: 10px;
|
n@502
|
103 }
|
n@502
|
104
|
n@311
|
105 div.testHalt {
|
n@311
|
106 /* Specify any colouring during the test halt for pre/post questions */
|
n@311
|
107 background-color: rgba(0,0,0,0.5);
|
n@311
|
108 /* Don't mess with this bit */
|
n@311
|
109 z-index: 2;
|
n@311
|
110 width: 100%;
|
n@311
|
111 height: 100%;
|
n@311
|
112 position: absolute;
|
n@311
|
113 left: 0px;
|
n@311
|
114 top: 0px;
|
n@311
|
115 }
|
n@311
|
116
|
n@635
|
117 button.outside-reference {
|
n@635
|
118 width:120px;
|
n@635
|
119 height:20px;
|
n@635
|
120 margin-bottom:5px;
|
n@635
|
121 position: absolute;
|
n@635
|
122 }
|
n@635
|
123
|
n@156
|
124 textarea.trackComment {
|
n@302
|
125 max-width: 594px;
|
n@301
|
126 min-width: 350px;
|
n@302
|
127 max-height: 60px;
|
n@509
|
128 resize: none;
|
n@156
|
129 }
|
n@201
|
130
|
n@201
|
131 div.playhead {
|
n@201
|
132 width: 500px;
|
n@201
|
133 height: 50px;
|
n@201
|
134 background-color: #eee;
|
n@201
|
135 border-radius: 10px;
|
n@201
|
136 padding: 10px;
|
n@201
|
137 }
|
n@201
|
138
|
n@201
|
139 div.playhead-scrub-track {
|
n@201
|
140 width: 100%;
|
n@201
|
141 height: 10px;
|
n@201
|
142 border-style: solid;
|
n@201
|
143 border-width: 1px;
|
n@201
|
144 }
|
n@201
|
145
|
n@201
|
146 div#playhead-scrubber {
|
n@201
|
147 width: 10px;
|
n@201
|
148 height: 10px;
|
n@201
|
149 position: relative;
|
n@201
|
150 background-color: #000;
|
n@201
|
151 }
|
n@483
|
152
|
n@483
|
153 div#master-volume-holder {
|
n@483
|
154 width: 250px;
|
n@483
|
155 float: left;
|
n@484
|
156 border: black 1px solid;
|
n@484
|
157 border-radius: 5px;
|
n@484
|
158 padding: 5px;
|
n@483
|
159 }
|
n@483
|
160
|
n@483
|
161 input#master-volume-control {
|
n@483
|
162 width: 200px;
|
n@483
|
163 height: 25px;
|
n@483
|
164 float: left;
|
n@483
|
165 margin: 0px;
|
n@483
|
166 padding: 0px;
|
n@483
|
167 }
|
n@483
|
168
|
n@483
|
169 span#master-volume-feedback {
|
n@483
|
170 width: 45px;
|
n@483
|
171 height: 25px;
|
n@483
|
172 margin-left: 5px;
|
n@483
|
173 float: left;
|
n@546
|
174 }
|
n@546
|
175
|
n@546
|
176 div.error-colour {
|
n@546
|
177 background-color: #FF8F8F;
|
n@546
|
178 }
|
n@546
|
179 button.error-colour {
|
n@546
|
180 background-color: #FF8F8F;
|
n@546
|
181 color: black;
|
n@483
|
182 } |