Subversion Repositories LCARS

Rev

Rev 102 | Rev 109 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 102 Rev 103
1
<?php
1
<?php
2
\header('Last-Modified: ' . gmdate('D, d M Y H:i:s', @filemtime(__FILE__)) . ' GMT');
2
\header('Last-Modified: ' . gmdate('D, d M Y H:i:s', @filemtime(__FILE__)) . ' GMT');
3
 
3
 
4
/* Do not let resource be cached in HTTP/1.1 caches */
4
/* Do not let resource be cached in HTTP/1.1 caches */
5
\header('Cache-Control: max-age=0, s-maxage=0, must-revalidate, proxy-revalidate');
5
\header('Cache-Control: max-age=0, s-maxage=0, must-revalidate, proxy-revalidate');
6
6
7
/* Do not let resource be cached in HTTP/1.0 caches */
7
/* Do not let resource be cached in HTTP/1.0 caches */
8
\header('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
8
\header('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
9
 
9
 
10
\header('Content-Type: text/css; charset=UTF-8');
10
\header('Content-Type: text/css; charset=UTF-8');
11
?>@charset "UTF-8";
11
?>@charset "UTF-8";
12
12
13
<?php
13
<?php
14
  if (!isset($_GET['ani']) || $_GET['ani'] !== '0')
14
  if (!isset($_GET['ani']) || $_GET['ani'] !== '0')
15
  {
15
  {
16
?>
16
?>
17
@import url("/styles/lcars-ani.css");
17
@import url("/styles/lcars-ani.css");
18
<?php
18
<?php
19
  }
19
  }
20
?>
20
?>
21
21
22
body {
22
body {
23
  margin-top: 12em;
23
  margin-top: 12em;
24
  margin-left: 22em;
24
  margin-left: 22em;
25
  margin-right: 0.2em;
25
  margin-right: 0.2em;
26
  margin-bottom: 0.2em;
26
  margin-bottom: 0.2em;
27
}
27
}
28
28
29
/* Bow (main) and elbo (multi-view) */
29
/* Bow (main) and elbo (multi-view) */
30
30
31
#LCARS {
31
#LCARS {
32
  position: fixed;
32
  position: fixed;
33
  left: 0;
33
  left: 0;
34
  top: 0;
34
  top: 0;
35
  right: 0;
35
  right: 0;
36
  padding: 0.2em;
36
  padding: 0.2em;
37
  background-color: #000;
37
  background-color: #000;
38
  z-index: 1701;
38
  z-index: 1701;
39
}
39
}
40
40
41
#bow {
41
#bow {
42
  position: absolute;
42
  position: absolute;
43
  left: 0.2em;
43
  left: 0.2em;
44
  top: 0.2em;
44
  top: 0.2em;
45
  right: 0.2em;
45
  right: 0.2em;
46
  height: 2.4em;
46
  height: 2.4em;
47
  padding-bottom: 0.2em;
47
  padding-bottom: 0.2em;
48
  background-color: #000;
48
  background-color: #000;
49
}
49
}
50
50
51
#bow-top {
51
#bow-top {
52
  /* NOTE: position: absolute is needed for animation */
52
  /* NOTE: position: absolute is needed for animation */
53
  position: absolute;
53
  position: absolute;
54
  top: 0;
54
  top: 0;
55
  left: 0;
55
  left: 0;
56
  right: 0;
56
  right: 0;
57
  min-width: 15.4em;
57
  min-width: 15.4em;
58
  height: 2em;
58
  height: 2em;
59
  background-color: #999;
59
  background-color: #999;
60
  border-top-left-radius: 2.4em;
60
  border-top-left-radius: 2.4em;
61
  border-top-right-radius: 1.2em;
61
  border-top-right-radius: 1.2em;
62
  border-bottom-right-radius: 1.2em;
62
  border-bottom-right-radius: 1.2em;
63
  line-height: 0.9;
63
  line-height: 0.9;
64
}
64
}
65
65
66
.empty #bow-top {
66
.empty #bow-top {
67
  border-top-left-radius: 1.2em;
67
  border-top-left-radius: 1.2em;
68
  border-bottom-left-radius: 1.2em;
68
  border-bottom-left-radius: 1.2em;
69
  min-width: 10em;
69
  min-width: 10em;
70
}
70
}
71
71
72
72
73
#bow-top .text {
73
#bow-top .text {
74
  position: absolute;
74
  position: absolute;
75
  margin: 0;
75
  margin: 0;
76
  left: 4.33em;
76
  left: 4.33em;
77
  top: 0;
77
  top: 0;
78
  right: 0.75em;
78
  right: 0.75em;
79
  height: 1em;
79
  height: 1em;
80
  text-align: right;
80
  text-align: right;
81
  color: #fc0;
81
  color: #fc0;
82
  font-size: 2.4em;
82
  font-size: 2.4em;
83
  padding-right: 0.1em;
83
  padding-right: 0.1em;
84
  overflow: hidden;
84
  overflow: hidden;
85
  text-overflow: ellipsis;
85
  text-overflow: ellipsis;
86
}
86
}
87
87
88
.empty #bow-top .text {
88
.empty #bow-top .text {
89
  left: 0.93em;
89
  left: 0.93em;
90
}
90
}
91
91
92
92
93
93
94
#bow-top .text span {
94
#bow-top .text span {
95
  padding-right: 0.1em;
95
  padding-right: 0.1em;
96
  background-color: #000;
96
  background-color: #000;
97
  padding-left: 0.1em;
97
  padding-left: 0.1em;
98
  text-transform: uppercase;
98
  text-transform: uppercase;
99
  white-space: nowrap;
99
  white-space: nowrap;
100
}
100
}
101
101
102
.empty #footer-container {
102
.empty #footer-container {
103
  position: fixed;
103
  position: fixed;
104
  left: 0.2em;
104
  left: 0.2em;
105
  bottom: 0;
105
  bottom: 0;
106
  right: 0.2em;
106
  right: 0.2em;
107
  min-height: 2.4em;
107
  min-height: 2.4em;
108
  padding-top: 0.2em;
108
  padding-top: 0.2em;
109
  padding-bottom: 0.2em;
109
  padding-bottom: 0.2em;
110
  background-color: #000;
110
  background-color: #000;
111
}
111
}
112
112
113
113
114
.empty #footer {
114
.empty #footer {
115
  position: absolute;
115
  position: absolute;
116
  bottom: 0;
116
  bottom: 0;
117
  left: 0;
117
  left: 0;
118
  right: 0;
118
  right: 0;
119
  height: 2em;
119
  height: 2em;
120
  min-width: 10em;
120
  min-width: 10em;
121
  margin-bottom: 0.2em;
121
  margin-bottom: 0.2em;
122
  background-color: #999;
122
  background-color: #999;
123
  border-radius: 1.2em;
123
  border-radius: 1.2em;
124
  line-height: 0.9;
124
  line-height: 0.9;
125
}
125
}
126
126
127
.empty #footer .text {
127
.empty #footer .text {
128
  position: absolute;
128
  position: absolute;
129
  margin: 0;
129
  margin: 0;
130
  left: 0.93em;
130
  left: 0.93em;
131
  top: 0;
131
  top: 0;
132
  right: 0.75em;
132
  right: 0.75em;
133
  height: 1em;
133
  height: 1em;
134
  background-color: transparent;
134
  background-color: transparent;
135
  color: #fc0;
135
  color: #fc0;
136
  font-size: 2.4em;
136
  font-size: 2.4em;
137
  padding-right: 0.1em;
137
  padding-right: 0.1em;
138
  overflow: hidden;
138
  overflow: hidden;
139
  text-overflow: ellipsis;
139
  text-overflow: ellipsis;
140
}
140
}
141
141
142
.empty #footer .text span {
142
.empty #footer .text span {
143
  padding-right: 0.1em;
143
  padding-right: 0.1em;
144
  background-color: #000;
144
  background-color: #000;
145
  padding-left: 0.1em;
145
  padding-left: 0.1em;
146
  text-transform: uppercase;
146
  text-transform: uppercase;
147
  white-space: nowrap;
147
  white-space: nowrap;
148
}
148
}
149
149
150
.empty .separator-left {
150
.empty .separator-left {
151
  position: absolute;
151
  position: absolute;
152
  left: 2em;
152
  left: 2em;
153
  height: 2em;
153
  height: 2em;
154
  width: 0.25em;
154
  width: 0.25em;
155
  background-color: #000;
155
  background-color: #000;
156
}
156
}
157
157
158
.empty .separator-right {
158
.empty .separator-right {
159
  position: absolute;
159
  position: absolute;
160
  right: 2em;
160
  right: 2em;
161
  height: 2em;
161
  height: 2em;
162
  width: 0.25em;
162
  width: 0.25em;
163
  background-color: #000;
163
  background-color: #000;
164
}
164
}
165
165
166
.bow {
166
.bow {
167
  background-color: #999;
167
  background-color: #999;
168
}
168
}
169
169
170
#bow-top-left {
170
#bow-top-left {
171
  position: absolute;
171
  position: absolute;
172
  top: 2em;
172
  top: 2em;
173
  left: 0;
173
  left: 0;
174
  right: 0;
174
  right: 0;
175
  height: 3.2em;
175
  height: 3.2em;
176
  width: 9.2em;
176
  width: 9.2em;
177
  background-color: #999;
177
  background-color: #999;
178
}
178
}
179
179
180
.empty #bow-top-left {
180
.empty #bow-top-left {
181
  display: none;
181
  display: none;
182
}
182
}
183
183
184
#bow-top-left .concave {
184
#bow-top-left .concave {
185
  position: absolute;
185
  position: absolute;
186
  top: 0;
186
  top: 0;
187
  left: 8em;
187
  left: 8em;
188
  height: 3.2em;
188
  height: 3.2em;
189
  width: 1.2em;
189
  width: 1.2em;
190
  background-color: #000;
190
  background-color: #000;
191
  border-top-left-radius: 1.2em;
191
  border-top-left-radius: 1.2em;
192
}
192
}
193
193
194
.empty #bow-top-left-concave {
194
.empty #bow-top-left-concave {
195
  display: none;
195
  display: none;
196
}
196
}
197
197
198
.menu-container {
198
.menu-container {
199
  position: fixed;
199
  position: fixed;
200
  left: 0.2em;
200
  left: 0.2em;
201
  top: 5.6em;
201
  top: 5.6em;
202
  width: 8em;
202
  width: 8em;
203
  bottom: 2.8em;
203
  bottom: 2.8em;
204
  background-color: #999;
204
  background-color: #999;
205
  overflow: auto;
205
  overflow: auto;
206
}
206
}
207
207
208
.menu
208
.menu
209
{
209
{
210
  height: 21.2em;
210
  height: 21.2em;
211
  background-color: #000;
211
  background-color: #000;
212
}
212
}
213
213
214
.menu ul {
214
.menu ul {
215
  margin: 0 0.2em 0.2em 0;
215
  margin: 0 0.2em 0 0;
216
  padding: 0;
216
  padding: 0;
217
}
217
}
218
218
219
.menu li {
219
.menu li {
220
  margin: 0;
220
  margin: 0;
221
}
221
}
222
222
223
#bow #bottom
223
#bow #bottom
224
{
224
{
225
  position: fixed;
225
  position: fixed;
226
  left: 0;
226
  left: 0;
227
  bottom: 0;
227
  bottom: 0;
228
  width: 20.8em;
228
  width: 20.8em;
229
  height: 2.4em;
229
  height: 2.4em;
230
  background-color: #000;
230
  background-color: #000;
231
  z-index: 1701;
231
  z-index: 1701;
232
}
232
}
233
233
234
#bow-bottom {
234
#bow-bottom {
235
  position: absolute;
235
  position: absolute;
236
  bottom: 0.2em;
236
  bottom: 0.2em;
237
  left: 0.2em;
237
  left: 0.2em;
238
  width: 20.6em;
238
  width: 20.6em;
239
  height: 2.4em;
239
  height: 2.4em;
240
  border-bottom-left-radius: 2.4em;
240
  border-bottom-left-radius: 2.4em;
241
  border-bottom-right-radius: 2em;
241
  border-bottom-right-radius: 2em;
242
  background-color: #999;
242
  background-color: #999;
243
}
243
}
244
244
245
.empty #bow-bottom {
245
.empty #bow-bottom {
246
  display: none;
246
  display: none;
247
}
247
}
248
248
249
#bow-bottom .concave {
249
#bow-bottom .concave {
250
  position: absolute;
250
  position: absolute;
251
  margin-left: 0.2em;
251
  margin-left: 0.2em;
252
  margin-bottom: 0.2em;
252
  margin-bottom: 0.2em;
253
  bottom: 0.3em;
253
  bottom: 0.3em;
254
  left: 7.8em;
254
  left: 7.8em;
255
  height: 2.1em;
255
  height: 2.1em;
256
  width: 7.6em;
256
  width: 7.6em;
257
  border-bottom-left-radius: 1.2em;
257
  border-bottom-left-radius: 1.2em;
258
  border-bottom-right-radius: 1em;
258
  border-bottom-right-radius: 1em;
259
  background-color: #000;
259
  background-color: #000;
260
}
260
}
261
261
262
#bow-bottom .spacer {
262
#bow-bottom .spacer {
263
  position: absolute;
263
  position: absolute;
264
  left: 10.2em;
264
  left: 10.2em;
265
  bottom: 0;
265
  bottom: 0;
266
  width: 0.2em;
266
  width: 0.2em;
267
  height: 0.5em;
267
  height: 0.5em;
268
  background-color: black;
268
  background-color: black;
269
}
269
}
270
270
271
.empty #bow-bottom-left-concave {
271
.empty #bow-bottom-left-concave {
272
  display: none;
272
  display: none;
273
}
273
}
274
274
275
/* Controls */
275
/* Controls */
276
276
277
.button:visited:hover,
-
 
278
.button:visited,
277
.button:visited,
279
.button:hover,
-
 
280
.button
278
.button
281
{
279
{
282
  position: relative;
280
  position: relative;
283
  display: inline-block;
281
  display: inline-block;
284
  margin-right: 0.2em;
282
  margin-right: 0.2em;
285
  margin-bottom: 0.2em;
283
  margin-bottom: 0.2em;
286
  width: 5em;
284
  width: 5em;
287
  height: 2em;
285
  height: 2em;
288
  background-color: #7d7d7d; /* c9c */
286
  background-color: #7d7d7d; /* c9c */
289
  color: #000 !important;
287
  color: #000 !important;
290
  text-decoration: none !important;
288
  text-decoration: none !important;
291
  text-transform: uppercase;
289
  text-transform: uppercase;
292
  overflow: hidden;
290
  overflow: hidden;
293
  cursor: pointer !important;
291
  cursor: pointer !important;
294
}
292
}
295
293
296
.button .text {
294
.button .text {
297
  position: absolute;
295
  position: absolute;
298
  bottom: 0;
296
  bottom: 0;
299
  right: 0.5em;
297
  right: 0.5em;
300
  cursor: pointer !important;
298
  cursor: pointer !important;
301
}
299
}
302
300
303
.button.command {
301
.button.command {
304
  border-radius: 1.2em;
302
  border-radius: 1.2em;
305
}
303
}
306
304
307
.button.command .text {
305
.button.command .text {
308
  position: absolute;
306
  position: absolute;
309
  bottom: 0;
307
  bottom: 0;
310
  right: 1em;
308
  right: 1em;
311
}
309
}
312
310
313
.button:hover,
311
.button:hover,
314
.button:focus,
312
.button:focus,
315
.button.selected:hover,
313
.button.selected:hover,
316
.button.selected:focus,
314
.button.selected:focus,
317
.group .button:hover,
315
.group .button:hover,
318
.group .button:focus,
316
.group .button:focus,
319
.group .button:visited:hover,
317
.group .button:visited:hover,
320
.group .button:visited:focus
318
.group .button:visited:focus
321
{
319
{
322
  background-color: #f90 !important;
320
  background-color: #f90 !important;
323
  color: #000 !important;
321
  color: #000 !important;
324
}
322
}
325
323
326
.button:active,
324
.button:active,
327
.button.selected:active,
325
.button.selected:active,
328
.group .button:active,
326
.group .button:active,
329
.group .button:visited:active
327
.group .button:visited:active
330
{
328
{
331
  background-color: #fff !important;
329
  background-color: #fff !important;
332
  color: #000 !important;
330
  color: #000 !important;
333
}
331
}
334
332
335
.menu .button {
333
.menu .button {
336
  display: block;
334
  display: block;
337
  width: 8em;
335
  width: 8em;
338
  height: 1em;
336
  height: 1em;
339
  line-height: 1;
337
  line-height: 1;
340
  background-color: #9cf;
338
  background-color: #9cf;
341
  color: #000 !important;
339
  color: #000 !important;
342
  text-overflow: ellipsis;
340
  text-overflow: ellipsis;
343
  white-space: nowrap;
341
  white-space: nowrap;
344
}
342
}
345
343
346
#connectors {
344
#connectors {
347
  position: fixed;
345
  position: fixed;
348
  left: 8.4em;
346
  left: 8.4em;
349
  top: 5.6em;
347
  top: 5.6em;
350
}
348
}
351
349
352
.multi-display
350
.multi-display
353
{
351
{
354
  position: fixed;
352
  position: fixed;
355
  top: 2.6em;
353
  top: 2.6em;
356
  left: 15.8em;
354
  left: 15.8em;
357
  right: 0;
355
  right: 0;
358
}
356
}
359
357
360
.multi-display .button
358
.multi-display .button
361
{
359
{
362
  width: 5em !important;
360
  width: 5em !important;
363
}
361
}
364
362
365
.multi-display .upper
363
.multi-display .upper
366
{
364
{
367
  position: absolute;
365
  position: absolute;
368
  top: 0;
366
  top: 0;
369
  left: 0;
367
  left: 0;
370
  right: 0;  
368
  right: 0;  
371
  height: 7.5em;  
369
  height: 7.5em;  
372
  padding-right: 0.2em;
370
  padding-right: 0.2em;
373
  background-color: black;
371
  background-color: black;
374
}
372
}
375
373
376
.multi-display .upper .content
374
.multi-display .upper .content
377
{
375
{
378
  position: absolute;
376
  position: absolute;
379
  top: 0;
377
  top: 0;
380
  left: 6em;
378
  left: 6em;
381
  bottom: 1.3em;
379
  bottom: 1.3em;
382
  right: 0.2em;
380
  right: 0.2em;
383
  background-color: black;
381
  background-color: black;
384
  color: white;
382
  color: white;
385
  text-align: right;
383
  text-align: right;
386
  overflow: hidden;
384
  overflow: hidden;
387
  text-overflow: ellipsis;
385
  text-overflow: ellipsis;
388
}
386
}
389
387
390
.multi-display .upper .content .title
388
.multi-display .upper .content .title
391
{
389
{
392
  position: absolute;
390
  position: absolute;
393
  top: 0;
391
  top: 0;
394
  left: 0;
392
  left: 0;
395
  height: 1em;
393
  height: 1em;
396
  right: 0;
394
  right: 0;
397
  background-color: black;
395
  background-color: black;
398
  color: white;
396
  color: white;
399
  font-size: 2.4em;
397
  font-size: 2.4em;
400
  text-transform: uppercase;
398
  text-transform: uppercase;
401
  text-align: right;
399
  text-align: right;
402
  overflow: hidden;
400
  overflow: hidden;
403
  text-overflow: ellipsis;
401
  text-overflow: ellipsis;
404
}
402
}
405
403
406
.multi-display .upper .content .title span
404
.multi-display .upper .content .title span
407
{
405
{
408
  white-space: nowrap;
406
  white-space: nowrap;
409
}
407
}
410
408
411
.multi-display .upper .content .analysis {
409
.multi-display .upper .content .analysis {
412
  position: absolute;
410
  position: absolute;
413
  top: 2.4em;
411
  top: 2.4em;
414
  bottom: 0;
412
  bottom: 0;
415
  right: 11em;
413
  right: 11em;
416
  left: 0;
414
  left: 0;
417
  overflow: hidden;
415
  overflow: hidden;
418
  text-overflow: ellipsis;
416
  text-overflow: ellipsis;
419
  text-align: left;
417
  text-align: left;
420
}
418
}
421
419
422
.multi-display .upper .content .commands
420
.multi-display .upper .content .commands
423
{
421
{
424
  position: absolute;
422
  position: absolute;
425
  margin: 0;
423
  margin: 0;
426
  padding: 0;
424
  padding: 0;
427
  top: 2.4em;
425
  top: 2.4em;
428
  right: 0;
426
  right: 0;
429
  height: 3.8em;
427
  height: 3.8em;
430
  width: 10.2em;
428
  width: 10.2em;
431
  list-style: none;
429
  list-style: none;
432
}
430
}
433
431
434
.multi-display .upper .content .commands li
432
.multi-display .upper .content .commands li
435
{
433
{
436
  position: absolute;
434
  position: absolute;
437
  margin: 0;
435
  margin: 0;
438
  width: 5em;
436
  width: 5em;
439
  height: 1.8em;
437
  height: 1.8em;
440
}
438
}
441
439
442
.multi-display .upper .content .commands .button
440
.multi-display .upper .content .commands .button
443
{
441
{
444
  position: absolute;
442
  position: absolute;
445
  top: 0;
443
  top: 0;
446
  left: 0;
444
  left: 0;
447
  margin: 0;
445
  margin: 0;
448
  height: 1.8em;
446
  height: 1.8em;
449
  border-radius: 0.9em;
447
  border-radius: 0.9em;
450
  text-transform: none;
448
  text-transform: none;
451
}
449
}
452
450
453
.multi-display .upper .content .commands .button .text {
451
.multi-display .upper .content .commands .button .text {
454
  right: 1em;
452
  right: 1em;
455
}
453
}
456
454
457
.multi-display .upper .content #cmd1
455
.multi-display .upper .content #cmd1
458
{
456
{
459
  top: 0;
457
  top: 0;
460
  right: 5.2em;
458
  right: 5.2em;
461
}
459
}
462
460
463
.multi-display .upper .content #cmd2
461
.multi-display .upper .content #cmd2
464
{
462
{
465
  top: 0;
463
  top: 0;
466
  right: 0;
464
  right: 0;
467
}
465
}
468
466
469
.multi-display .upper .content #cmd3
467
.multi-display .upper .content #cmd3
470
{
468
{
471
  top: 2em;
469
  top: 2em;
472
  right: 0;
470
  right: 0;
473
}
471
}
474
472
475
.multi-display .upper .content #cmd4
473
.multi-display .upper .content #cmd4
476
{
474
{
477
  top: 2em;
475
  top: 2em;
478
  right: 5.2em;
476
  right: 5.2em;
479
}
477
}
480
478
481
.multi-display .upper .elbo-button
479
.multi-display .upper .elbo-button
482
{
480
{
483
  position: absolute;
481
  position: absolute;
484
  top: 0;
482
  top: 0;
485
  left: 0;
483
  left: 0;
486
  width: 5em;
484
  width: 5em;
487
  height: 4em;
485
  height: 4em;
488
  background-color: #c9c !important;
486
  background-color: #c9c !important;
489
  color: #000 !important;
487
  color: #000 !important;
490
  cursor: default;
488
  cursor: default;
491
}
489
}
492
490
493
.multi-display .upper .elbo-button .text
491
.multi-display .upper .elbo-button .text
494
{
492
{
495
  position: absolute;
493
  position: absolute;
496
  bottom: 0;
494
  bottom: 0;
497
  right: 0.2em;
495
  right: 0.2em;
498
  max-width: 4em;
496
  max-width: 4em;
499
  max-height: 3.6em;
497
  max-height: 3.6em;
500
  text-align: right;
498
  text-align: right;
501
  overflow: hidden;
499
  overflow: hidden;
502
}
500
}
503
501
504
.multi-display .upper .elbo
502
.multi-display .upper .elbo
505
{
503
{
506
  position: absolute;
504
  position: absolute;
507
  left: 0;
505
  left: 0;
508
  top: 4.2em;
506
  top: 4.2em;
509
  width: 6em;
507
  width: 6em;
510
  height: 3.2em;
508
  height: 3.2em;
511
  border-bottom-left-radius: 2em;
509
  border-bottom-left-radius: 2em;
512
  background-color: #9cf;
510
  background-color: #9cf;
513
  color: #000;
511
  color: #000;
514
}
512
}
515
513
516
.multi-display .upper .elbo .text
514
.multi-display .upper .elbo .text
517
{
515
{
518
  position: absolute;
516
  position: absolute;
519
  top: 0;
517
  top: 0;
520
  right: 1.2em;
518
  right: 1.2em;
521
  max-width: 4em;
519
  max-width: 4em;
522
  max-height: 2.2em;
520
  max-height: 2.2em;
523
  text-align: right;
521
  text-align: right;
524
  overflow: hidden;
522
  overflow: hidden;
525
  cursor: default;
523
  cursor: default;
526
}
524
}
527
525
528
.elbo [title],
526
.elbo [title],
529
.button [title]
527
.button [title]
530
{
528
{
531
  border-bottom: none;
529
  border-bottom: none;
532
}
530
}
533
531
534
.multi-display .upper .elbo .concave
532
.multi-display .upper .elbo .concave
535
{
533
{
536
  position: absolute;
534
  position: absolute;
537
  left: 5em;
535
  left: 5em;
538
  top: 0;
536
  top: 0;
539
  width: 1em;
537
  width: 1.1em;
540
  height: 2.2em;
538
  height: 2.2em;
541
  border-bottom-left-radius: 1em;
539
  border-bottom-left-radius: 1em;
542
  background-color: black;
540
  background-color: black;
543
}
541
}
544
542
545
.multi-display .border
543
.multi-display .border
546
{
544
{
547
  height: 1em;
545
  height: 1em;
548
}
546
}
549
547
550
.multi-display .upper .border
548
.multi-display .upper .border
551
{
549
{
552
  position: absolute;
550
  position: absolute;
553
  top: 6.4em;
551
  top: 6.4em;
554
  left: 6em;
552
  left: 6em;
555
  right: 0.2em;
553
  right: 0.2em;
556
}
554
}
557
555
558
.multi-display .border div
556
.multi-display .border div
559
{
557
{
560
  position: absolute;
558
  position: absolute;
561
  top: 0;
559
  top: 0;
562
  height: 1em;
560
  height: 1em;
563
}
561
}
564
562
565
.multi-display .upper .border div
563
.multi-display .upper .border div
566
{
564
{
567
  background-color: #9cf;
565
  background-color: #9cf;
568
}
566
}
569
567
570
.multi-display .upper .border .left
568
.multi-display .upper .border .left
571
{
569
{
572
  left: 0;
570
  left: 0;
573
  right: 5.2em;
571
  right: 5.2em;
574
  height: 1em;
572
  height: 1em;
575
}
573
}
576
 
574
 
577
.multi-display .upper .border .right
575
.multi-display .upper .border .right
578
{
576
{
579
  width: 5em;
577
  width: 5em;
580
  right: 0;
578
  right: 0;
581
}
579
}
582
 
580
 
583
.multi-display .lower
581
.multi-display .lower
584
{
582
{
585
  position: absolute;
583
  position: absolute;
586
  top: 7.5em;
584
  top: 7.5em;
587
  left: 0;
585
  left: 0;
588
  height: 0.1em;
586
  height: 0.1em;
589
  right: 0;
587
  right: 0;
590
  background-color: black;
588
  background-color: black;
591
}
589
}
592
590
593
.multi-display .lower .elbo
591
.multi-display .lower .elbo
594
{
592
{
595
  position: absolute;
593
  position: absolute;
596
  top: 0.1em;
594
  top: 0.1em;
597
  left: 0;
595
  left: 0;
598
  width: 6em;
596
  width: 6em;
599
  height: 3em;
597
  height: 3em;
600
  border-top-left-radius: 2em;
598
  border-top-left-radius: 2em;
601
  background-color: #fc6;
599
  background-color: #fc6;
602
}
600
}
603
601
604
.multi-display .lower .elbo .concave
602
.multi-display .lower .elbo .concave
605
{
603
{
606
  position: absolute;
604
  position: absolute;
607
  left: 5em;
605
  left: 5em;
608
  top: 1em;
606
  top: 1em;
609
  width: 1em;
607
  width: 1.1em;
610
  height: 2em;
608
  height: 2.1em;
611
  background-color: black;
609
  background-color: black;
612
  border-top-left-radius: 1em;
610
  border-top-left-radius: 1em;
613
}
611
}
614
612
615
.multi-display .lower .bg
613
.multi-display .lower .bg
616
{
614
{
617
  position: fixed;
615
  position: fixed;
618
  top: 13.4em;
616
  top: 13.4em;
619
  bottom: 2.8em;
617
  bottom: 2.8em;
620
  width: 5em;
618
  width: 5em;
621
  background-color: #fc6;
619
  background-color: #fc6;
622
}
620
}
623
621
624
.multi-display .lower .border-container
622
.multi-display .lower .border-container
625
{
623
{
626
  position: absolute;
624
  position: absolute;
627
  top: 0.1em;
625
  top: 0.1em;
628
  left: 6em;
626
  left: 6em;
629
  right: 0;
627
  right: 0;
630
  height: 1.2em;
628
  height: 1.2em;
631
  background-color: black;
629
  background-color: black;
632
}
630
}
633
631
634
.multi-display .lower .border
632
.multi-display .lower .border
635
{
633
{
636
  position: absolute;
634
  position: absolute;
637
  left: 0;
635
  left: 0;
638
  right: 0.2em;
636
  right: 0.2em;
639
}
637
}
640
638
641
.multi-display .lower .border div
639
.multi-display .lower .border div
642
{
640
{
643
  background-color: #fc6;
641
  background-color: #fc6;
644
}
642
}
645
643
646
.multi-display .lower .border .left
644
.multi-display .lower .border .left
647
{
645
{
648
  left: 0;
646
  left: 0;
649
  right: 5.2em;
647
  right: 5.2em;
650
}
648
}
651
649
652
.multi-display .lower .border .right
650
.multi-display .lower .border .right
653
{
651
{
654
  width: 5em;
652
  width: 5em;
655
  right: 0;
653
  right: 0;
656
}
654
}
657
655
658
.menu .button.secondary,
656
.menu .button.secondary,
659
.multi-display .lower .elbo.secondary,
657
.multi-display .lower .elbo.secondary,
660
.multi-display .lower .bg.secondary,
658
.multi-display .lower .bg.secondary,
661
.multi-display .lower .border.secondary
659
.multi-display .lower .border.secondary
662
{
660
{
663
  background-color: #f96;
661
  background-color: #f96;
664
}
662
}
665
663
666
.menu .button.ancillary,
664
.menu .button.ancillary,
667
.multi-display .lower .elbo.ancillary,
665
.multi-display .lower .elbo.ancillary,
668
.multi-display .lower .bg.ancillary,
666
.multi-display .lower .bg.ancillary,
669
.multi-display .lower .border.ancillary
667
.multi-display .lower .border.ancillary
670
{
668
{
671
  background-color: #c9c;
669
  background-color: #c9c;
672
}
670
}
673
671
674
.menu .button.database,
672
.menu .button.database,
675
.multi-display .lower .elbo.database,
673
.multi-display .lower .elbo.database,
676
.multi-display .lower .bg.database,
674
.multi-display .lower .bg.database,
677
.multi-display .lower .border.database
675
.multi-display .lower .border.database
678
{
676
{
679
  background-color: #c66;
677
  background-color: #c66;
680
}
678
}
681
679
682
.menu .button .text {
680
.menu .button .text {
683
  position: static;
681
  position: static;
684
  margin: 0 0.25em;
682
  margin: 0 0.25em;
685
}
683
}
686
684
687
.button.selected {
685
.button.selected {
688
  background-color: #fc6 !important;
686
  background-color: #fc6 !important;
689
  color: #000 !important;  
687
  color: #000 !important;  
690
}
688
}
691
689
692
.group {
690
.group {
693
  margin: 0 auto;
691
  margin: 0 auto;
694
  position: relative;
692
  position: relative;
695
  width: 7.7em;
693
  width: 7.7em;
696
}
694
}
697
695
698
.group .separator {
696
.group .separator {
699
  float: left;
697
  float: left;
700
  position: absolute;
698
  position: absolute;
701
  top: 0;
699
  top: 0;
702
  left: 0;
700
  left: 0;
703
  width: 1.5em;
701
  width: 1.5em;
704
  height: 100%;
702
  height: 100%;
705
  background-color: #c66;
703
  background-color: #c66;
706
  color: #000;
704
  color: #000;
707
}
705
}
708
706
709
.group .separator:after {
707
.group .separator:after {
710
  position: absolute;
708
  position: absolute;
711
  width: 0.8em;
709
  width: 0.8em;
712
  height: 0.5em;
710
  height: 0.5em;
713
  bottom: 0.25em;
711
  bottom: 0.25em;
714
  left: 0.25em;
712
  left: 0.25em;
715
  background-color: #000;
713
  background-color: #000;
716
  content: "\a0";
714
  content: "\a0";
717
}
715
}
718
716
719
.group ul {
717
.group ul {
720
  margin-left: 1.7em;
718
  margin-left: 1.7em;
721
}
719
}
722
720
723
.group li {
721
.group li {
724
  margin-bottom: 0;
722
  margin-bottom: 0;
725
}
723
}
726
724
727
.group .button:visited,
725
.group .button:visited,
728
.group .button
726
.group .button
729
{
727
{
730
  display: block;
728
  display: block;
731
  position: relative;
729
  position: relative;
732
  width: 6em;
730
  width: 6em;
733
  background-color: #99f !important;
731
  background-color: #99f !important;
734
}
732
}
735
733
736
.group li:last-child .button
734
.group li:last-child .button
737
{
735
{
738
  margin-bottom: 0;
736
  margin-bottom: 0;
739
}
737
}
740
738
741
.button.right {
739
.button.right {
742
  border-top-right-radius: 1em;
740
  border-top-right-radius: 1em;
743
  border-bottom-right-radius: 1em;
741
  border-bottom-right-radius: 1em;
744
}
742
}
745
743
746
.button.right .text {
744
.button.right .text {
747
  right: 1em;
745
  right: 1em;
748
}
746
}
749
747
750
.button.left {
748
.button.left {
751
  border-top-left-radius: 1em;
749
  border-top-left-radius: 1em;
752
  border-bottom-left-radius: 1em;
750
  border-bottom-left-radius: 1em;
753
}
751
}
754
752
755
.group .button .key {
753
.group .button .key {
756
  display: inline-block;
754
  display: inline-block;
757
  position: absolute;
755
  position: absolute;
758
  left: 0.2em;
756
  left: 0.2em;
759
  top: 0;
757
  top: 0;
760
  bottom: 0;
758
  bottom: 0;
761
  padding: 0 0.1em;
759
  padding: 0 0.1em;
762
  background-color: #000;
760
  background-color: #000;
763
  color: #f90;
761
  color: #f90;
764
  font-size: 2.4em;
762
  font-size: 2.4em;
765
  text-transform: uppercase;
763
  text-transform: uppercase;
766
  line-height: 0.9;
764
  line-height: 0.9;
767
}
765
}