Subversion Repositories LCARS

Rev

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

Rev 179 Rev 182
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
/* Resource expires in HTTP/1.1 caches 24h after last retrieval */
4
/* Resource expires in HTTP/1.1 caches 24h after last retrieval */
5
@\header('Cache-Control: max-age=86400, s-maxage=86400, must-revalidate, proxy-revalidate');
5
@\header('Cache-Control: max-age=86400, s-maxage=86400, must-revalidate, proxy-revalidate');
6
6
7
/* Resource expires in HTTP/1.0 caches 24h after last retrieval */
7
/* Resource expires in HTTP/1.0 caches 24h after last retrieval */
8
@\header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 86400) . ' GMT');
8
@\header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 86400) . ' GMT');
9
 
9
 
10
@\header('Content-Type: text/css; charset=UTF-8');
10
@\header('Content-Type: text/css; charset=UTF-8');
11
11
12
require_once 'css/least/Mixins.php';
12
require_once 'css/least/Mixins.php';
13
use de\pointedears\css\least\Mixins;
13
use de\pointedears\css\least\Mixins;
14
?>@charset "UTF-8";
14
?>@charset "UTF-8";
15
15
16
<?php
16
<?php
17
  if (!isset($_GET['ani']) || $_GET['ani'] !== '0')
17
  if (!isset($_GET['ani']) || $_GET['ani'] !== '0')
18
  {
18
  {
19
    /* Optional general animations */
19
    /* Optional general animations */
20
?>
20
?>
21
@import url("/styles/lcars-ani.css");
21
@import url("/styles/lcars-ani.css");
22
<?php
22
<?php
23
  }
23
  }
24
?>
24
?>
25
25
26
<?php
26
<?php
27
  /* Non-optional content-specific animations */
27
  /* Non-optional content-specific animations */
28
  Mixins::keyframes('analysis', <<<CSS
28
  Mixins::keyframes('analysis', <<<CSS
29
    from, 74% {
29
    from, 74% {
30
      opacity: 0;
30
      opacity: 0;
31
    }
31
    }
32
32
33
    75%, to {
33
    75%, to {
34
      opacity: 1;
34
      opacity: 1;
35
      color: #fc6;
35
      color: #fc6;
36
    }
36
    }
37
CSS
37
CSS
38
   );
38
   );
39
?>
39
?>
40
40
41
<?php
41
<?php
42
  Mixins::keyframes('analysis-scan', <<<CSS
42
  Mixins::keyframes('analysis-scan', <<<CSS
43
    from, 25% {
43
    from, 25% {
44
      color: #fc6;
44
      color: #fc6;
45
    }
45
    }
46
   
46
   
47
    26%, to {
47
    26%, to {
48
      color: #fff;
48
      color: #fff;
49
    }
49
    }
50
CSS
50
CSS
51
   );
51
   );
52
   
52
   
53
   /* FIXME: :hover hides first row */
53
   /* FIXME: :hover hides first row */
54
/*
54
/*
55
.multi-display .upper .content .analysis:hover tr {
55
.multi-display .upper .content .analysis:hover tr {
56
  <?php
56
  <?php
57
    Mixins::animation('-play-state', 'paused');
57
    Mixins::animation('-play-state', 'paused');
58
  ?>
58
  ?>
59
}
59
}
60
*/
60
*/
61
?>
61
?>
62
 
62
 
63
.multi-display .upper .content .analysis tr:hover
63
.multi-display .upper .content .analysis tr:hover
64
{
64
{
65
        color: #f90 !important;
65
        color: #f90 !important;
66
}
66
}
67
 
67
 
68
/* Blink rate 1 Hz should be safe for people with photosensitive epilepsy */
68
/* Blink rate 1 Hz should be safe for people with photosensitive epilepsy */
69
.multi-display .upper .content .analysis tr:nth-child(1)
69
.multi-display .upper .content .analysis tr:nth-child(1)
70
{
70
{
71
  <?php
71
  <?php
72
    Mixins::animation('', 'analysis 1.5s linear 0s, analysis-scan 4s linear 2.0s infinite');
72
    Mixins::animation('', 'analysis 1.5s linear 0s, analysis-scan 4s linear 2.0s infinite');
73
  ?>  
73
  ?>  
74
}
74
}
75
75
76
.multi-display .upper .content .analysis tr:nth-child(2)
76
.multi-display .upper .content .analysis tr:nth-child(2)
77
{
77
{
78
  <?php
78
  <?php
79
    Mixins::animation('', 'analysis 1.5s linear 0.25s, analysis-scan 4s linear 3.0s infinite');
79
    Mixins::animation('', 'analysis 1.5s linear 0.25s, analysis-scan 4s linear 3.0s infinite');
80
  ?>  
80
  ?>  
81
}
81
}
82
82
83
.multi-display .upper .content .analysis tr:nth-child(3)
83
.multi-display .upper .content .analysis tr:nth-child(3)
84
{
84
{
85
  <?php
85
  <?php
86
    Mixins::animation('', 'analysis 1.5s linear 0.5s, analysis-scan 4s linear 4.0s infinite');
86
    Mixins::animation('', 'analysis 1.5s linear 0.5s, analysis-scan 4s linear 4.0s infinite');
87
  ?>  
87
  ?>  
88
}
88
}
89
89
90
<?php
90
<?php
91
  Mixins::keyframes('analysis-offline', <<<CSS
91
  Mixins::keyframes('analysis-offline', <<<CSS
92
    from, 33% {
92
    from, 33% {
93
      color: #300;
93
      color: #300;
94
    }
94
    }
95
   
95
   
96
    34%, to {
96
    34%, to {
97
      color: #f00;
97
      color: #f00;
98
    }
98
    }
99
CSS
99
CSS
100
   );
100
   );
101
?>
101
?>
102
102
103
.offline {
103
.offline {
104
  <?php
104
  <?php
105
    Mixins::animation('', 'analysis-offline 3s linear 2.0s infinite');
105
    Mixins::animation('', 'analysis-offline 3s linear 2.0s infinite');
106
  ?>
106
  ?>
107
}
107
}
108
108
109
body {
109
body {
110
  margin-top: 12em;
110
  margin-top: 12em;
111
  margin-left: 16.8em;
111
  margin-left: 16.8em;
112
  margin-right: 0.2em;
112
  margin-right: 0.2em;
113
  margin-bottom: 0.2em;
113
  margin-bottom: 0.2em;
114
}
114
}
115
115
116
/* HTML5 elements */
116
/* HTML5 elements */
117
117
118
nav
118
nav
119
{
119
{
120
  display: block;
120
  display: block;
121
}
121
}
122
122
123
/* Bow (main) and elbo (multi-view) */
123
/* Bow (main) and elbo (multi-view) */
124
124
125
#LCARS {
125
#LCARS {
126
  position: fixed;
126
  position: fixed;
127
  left: 0;
127
  left: 0;
128
  top: 0;
128
  top: 0;
129
  right: 0;
129
  right: 0;
130
  padding: 0.2em;
130
  padding: 0.2em;
131
  background-color: #000;
131
  background-color: #000;
132
  z-index: 1701;
132
  z-index: 1701;
133
}
133
}
134
134
135
#bow {
135
#bow {
136
  position: absolute;
136
  position: absolute;
137
  left: 0.2em;
137
  left: 0.2em;
138
  top: 0.2em;
138
  top: 0.2em;
139
  right: 0.2em;
139
  right: 0.2em;
140
  height: 2.4em;
140
  height: 2.4em;
141
  padding-bottom: 0.2em;
141
  padding-bottom: 0.2em;
142
  background-color: #000;
142
  background-color: #000;
143
}
143
}
144
144
145
#bow-top {
145
#bow-top {
146
  /* NOTE: position: absolute is needed for animation */
146
  /* NOTE: position: absolute is needed for animation */
147
  position: absolute;
147
  position: absolute;
148
  top: 0;
148
  top: 0;
149
  left: 0;
149
  left: 0;
150
  right: 0;
150
  right: 0;
151
  min-width: 15.4em;
151
  min-width: 15.4em;
152
  height: 2em;
152
  height: 2em;
153
  background-color: #999;
153
  background-color: #999;
154
  border-top-left-radius: 2.4em;
154
  border-top-left-radius: 2.4em;
155
  border-top-right-radius: 1.2em;
155
  border-top-right-radius: 1.2em;
156
  border-bottom-right-radius: 1.2em;
156
  border-bottom-right-radius: 1.2em;
157
  line-height: 0.9;
157
  line-height: 0.9;
158
}
158
}
159
159
160
.empty #bow-top {
160
.empty #bow-top {
161
  border-top-left-radius: 1.2em;
161
  border-top-left-radius: 1.2em;
162
  border-bottom-left-radius: 1.2em;
162
  border-bottom-left-radius: 1.2em;
163
  min-width: 10em;
163
  min-width: 10em;
164
}
164
}
165
165
166
166
167
#bow-top .text {
167
#bow-top .text {
168
  position: absolute;
168
  position: absolute;
169
  margin: 0;
169
  margin: 0;
170
  left: 4.33em;
170
  left: 4.33em;
171
  top: 0;
171
  top: 0;
172
  right: 0.75em;
172
  right: 0.75em;
173
  height: 1em;
173
  height: 1em;
174
  text-align: right;
174
  text-align: right;
175
  color: #fc0;
175
  color: #fc0;
176
  font-size: 2.4em;
176
  font-size: 2.4em;
177
  padding-right: 0.1em;
177
  padding-right: 0.1em;
178
  overflow: hidden;
178
  overflow: hidden;
179
  text-overflow: ellipsis;
179
  text-overflow: ellipsis;
180
}
180
}
181
181
182
.empty #bow-top .text {
182
.empty #bow-top .text {
183
  left: 0.93em;
183
  left: 0.93em;
184
}
184
}
185
185
186
186
187
187
188
#bow-top .text span {
188
#bow-top .text span {
189
  padding-right: 0.1em;
189
  padding-right: 0.1em;
190
  background-color: #000;
190
  background-color: #000;
191
  padding-left: 0.1em;
191
  padding-left: 0.1em;
192
  text-transform: uppercase;
192
  text-transform: uppercase;
193
  white-space: nowrap;
193
  white-space: nowrap;
194
}
194
}
195
195
196
.empty #footer-container {
196
.empty #footer-container {
197
  position: fixed;
197
  position: fixed;
198
  left: 0.2em;
198
  left: 0.2em;
199
  bottom: 0;
199
  bottom: 0;
200
  right: 0.2em;
200
  right: 0.2em;
201
  min-height: 2.4em;
201
  min-height: 2.4em;
202
  padding-top: 0.2em;
202
  padding-top: 0.2em;
203
  padding-bottom: 0.2em;
203
  padding-bottom: 0.2em;
204
  background-color: #000;
204
  background-color: #000;
205
}
205
}
206
206
207
207
208
.empty #footer {
208
.empty #footer {
209
  position: absolute;
209
  position: absolute;
210
  bottom: 0;
210
  bottom: 0;
211
  left: 0;
211
  left: 0;
212
  right: 0;
212
  right: 0;
213
  height: 2em;
213
  height: 2em;
214
  min-width: 10em;
214
  min-width: 10em;
215
  margin-bottom: 0.2em;
215
  margin-bottom: 0.2em;
216
  background-color: #999;
216
  background-color: #999;
217
  border-radius: 1.2em;
217
  border-radius: 1.2em;
218
  line-height: 0.9;
218
  line-height: 0.9;
219
}
219
}
220
220
221
.empty #footer .text {
221
.empty #footer .text {
222
  position: absolute;
222
  position: absolute;
223
  margin: 0;
223
  margin: 0;
224
  left: 0.93em;
224
  left: 0.93em;
225
  top: 0;
225
  top: 0;
226
  right: 0.75em;
226
  right: 0.75em;
227
  height: 1em;
227
  height: 1em;
228
  background-color: transparent;
228
  background-color: transparent;
229
  color: #fc0;
229
  color: #fc0;
230
  font-size: 2.4em;
230
  font-size: 2.4em;
231
  padding-right: 0.1em;
231
  padding-right: 0.1em;
232
  overflow: hidden;
232
  overflow: hidden;
233
  text-overflow: ellipsis;
233
  text-overflow: ellipsis;
234
}
234
}
235
235
236
.empty #footer .text span {
236
.empty #footer .text span {
237
  padding-right: 0.1em;
237
  padding-right: 0.1em;
238
  background-color: #000;
238
  background-color: #000;
239
  padding-left: 0.1em;
239
  padding-left: 0.1em;
240
  text-transform: uppercase;
240
  text-transform: uppercase;
241
  white-space: nowrap;
241
  white-space: nowrap;
242
}
242
}
243
243
244
.empty .separator-left {
244
.empty .separator-left {
245
  position: absolute;
245
  position: absolute;
246
  left: 2em;
246
  left: 2em;
247
  height: 2em;
247
  height: 2em;
248
  width: 0.25em;
248
  width: 0.25em;
249
  background-color: #000;
249
  background-color: #000;
250
}
250
}
251
251
252
.empty .separator-right {
252
.empty .separator-right {
253
  position: absolute;
253
  position: absolute;
254
  right: 2em;
254
  right: 2em;
255
  height: 2em;
255
  height: 2em;
256
  width: 0.25em;
256
  width: 0.25em;
257
  background-color: #000;
257
  background-color: #000;
258
}
258
}
259
259
260
.bow {
260
.bow {
261
  background-color: #999;
261
  background-color: #999;
262
}
262
}
263
263
264
#bow-top-left {
264
#bow-top-left {
265
  position: absolute;
265
  position: absolute;
266
  top: 2em;
266
  top: 2em;
267
  left: 0;
267
  left: 0;
268
  right: 0;
268
  right: 0;
269
  height: 4.4em;
269
  height: 4.4em;
270
  width: 9.2em;
270
  width: 9.2em;
271
  background-color: #999;
271
  background-color: #999;
272
  overflow: hidden;
272
  overflow: hidden;
273
}
273
}
274
274
275
.empty #bow-top-left {
275
.empty #bow-top-left {
276
  display: none;
276
  display: none;
277
}
277
}
278
278
279
#bow-top-left .concave {
279
#bow-top-left .concave {
280
  position: absolute;
280
  position: absolute;
281
  top: 0;
281
  top: 0;
282
  left: 8em;
282
  left: 8em;
283
  height: 4.4em;
283
  height: 4.4em;
284
  width: 1.2em;
284
  width: 1.2em;
285
  background-color: #000;
285
  background-color: #000;
286
  border-top-left-radius: 1.2em;
286
  border-top-left-radius: 1.2em;
287
}
287
}
288
288
289
.empty #bow-top-left-concave {
289
.empty #bow-top-left-concave {
290
  display: none;
290
  display: none;
291
}
291
}
292
292
293
.menu-container {
293
.menu-container {
294
  position: fixed;
294
  position: fixed;
295
  left: 0.2em;
295
  left: 0.2em;
296
  top: 6.8em;
296
  top: 6.8em;
297
  width: 8em;
297
  width: 8em;
298
  bottom: 2.8em;
298
  bottom: 2.8em;
299
  background-color: #999;
299
  background-color: #999;
300
  overflow: auto;
300
  overflow: auto;
301
  overflow-x: hidden;
301
  overflow-x: hidden;
302
  overflow-y: auto;
302
  overflow-y: auto;
303
}
303
}
304
304
305
.menu
305
.menu
306
{
306
{
307
  height: 23.6em;
307
  height: 23.6em;
308
  background-color: #000;
308
  background-color: #000;
309
}
309
}
310
310
311
.menu ul {
311
.menu ul {
312
  margin: 0 0.2em 0 0;
312
  margin: 0 0.2em 0 0;
313
  padding: 0;
313
  padding: 0;
314
}
314
}
315
315
316
.menu ul:first-child {
316
.menu ul:first-child {
317
  padding-top: 1em;
317
  padding-top: 1em;
318
}
318
}
319
319
320
.menu li {
320
.menu li {
321
  margin: 0;
321
  margin: 0;
322
}
322
}
323
323
324
#bow #bottom
324
#bow #bottom
325
{
325
{
326
  position: fixed;
326
  position: fixed;
327
  left: 0;
327
  left: 0;
328
  bottom: 0;
328
  bottom: 0;
329
  width: 10.4em;
329
  width: 10.4em;
330
  height: 2.4em;
330
  height: 2.4em;
331
  background-color: #000;
331
  background-color: #000;
332
  z-index: 1701;
332
  z-index: 1701;
333
}
333
}
334
334
335
#bow-bottom {
335
#bow-bottom {
336
  position: absolute;
336
  position: absolute;
337
  bottom: 0.2em;
337
  bottom: 0.2em;
338
  left: 0.2em;
338
  left: 0.2em;
339
  width: 8em;
339
  width: 8em;
340
  height: 2.4em;
340
  height: 2.4em;
341
  border-bottom-left-radius: 0em;
341
  border-bottom-left-radius: 0em;
342
  border-bottom-right-radius: 0em;
342
  border-bottom-right-radius: 0em;
343
  background-color: #999;
343
  background-color: #999;
344
}
344
}
345
345
346
.empty #bow-bottom {
346
.empty #bow-bottom {
347
  display: none;
347
  display: none;
348
}
348
}
349
349
350
#bow-bottom .concave {
350
#bow-bottom .concave {
351
  position: absolute;
351
  position: absolute;
352
  margin-left: 0.2em;
352
  margin-left: 0.2em;
353
  margin-bottom: 0.2em;
353
  margin-bottom: 0.2em;
354
  bottom: 0.3em;
354
  bottom: 0.3em;
355
  left: 7.8em;
355
  left: 7.8em;
356
  height: 2.1em;
356
  height: 2.1em;
357
  width: 2.2em;
357
  width: 2.2em;
358
  border-bottom-left-radius: 1.2em;
358
  border-bottom-left-radius: 1.2em;
359
  border-bottom-right-radius: 1em;
359
  border-bottom-right-radius: 1em;
360
  background-color: #000;
360
  background-color: #000;
361
}
361
}
362
362
363
#bow-bottom .spacer {
363
#bow-bottom .spacer {
364
  position: absolute;
364
  position: absolute;
365
  left: 10.2em;
365
  left: 10.2em;
366
  bottom: 0;
366
  bottom: 0;
367
  width: 0.2em;
367
  width: 0.2em;
368
  height: 0.5em;
368
  height: 0.5em;
369
  background-color: black;
369
  background-color: black;
370
}
370
}
371
371
372
.empty #bow-bottom-left-concave {
372
.empty #bow-bottom-left-concave {
373
  display: none;
373
  display: none;
374
}
374
}
375
375
376
/* Controls */
376
/* Controls */
377
377
378
input,
378
input,
379
select
379
select
380
{
380
{
381
  margin: 0 0.2em 0.2em 0;
381
  margin: 0 0.2em 0.2em 0;
382
  font-size: 1em;
382
  font-size: 1em;
383
}
383
}
384
384
385
input
385
input
386
{
386
{
387
  min-width: 4.875em;
387
  min-width: 4.875em;
388
  border: 1px solid #7d7d7d;
388
  border: 1px solid #7d7d7d;
389
  padding: 0 0.125em;
389
  padding: 0 0.125em;
390
  background-color: #000;
390
  background-color: #000;
391
  color: #fff;
391
  color: #fff;
392
}
392
}
393
393
394
input:focus
394
input:focus
395
{
395
{
396
  border-color: #f90;
396
  border-color: #f90;
397
}
397
}
398
398
399
select
399
select
400
{
400
{
401
  min-width: 5em;
401
  min-width: 5em;
402
  background-color: #7d7d7d;
402
  background-color: #7d7d7d;
403
  color: #000 !important;
403
  color: #000 !important;
404
  border: none;
404
  border: none;
405
}
405
}
406
406
407
select:focus
407
select:focus
408
{
408
{
409
  background-color: #f90;
409
  background-color: #f90;
410
  color: #000;
410
  color: #000;
411
}
411
}
412
412
413
option {
413
option {
414
  background-color: #000;
414
  background-color: #000;
415
  color: #fff;
415
  color: #fff;
416
}
416
}
417
417
418
option:checked {
418
option:checked {
419
  color: #fc6;
419
  color: #fc6;
420
}
420
}
421
421
422
.button:visited,
422
.button:visited,
423
.button
423
.button
424
{
424
{
425
  position: relative;
425
  position: relative;
426
  display: inline-block;
426
  display: inline-block;
427
  margin-right: 0.2em;
427
  margin-right: 0.2em;
428
  margin-bottom: 0.2em;
428
  margin-bottom: 0.2em;
429
  width: 5em;
429
  width: 5em;
430
  height: 2em;
430
  height: 2em;
431
  background-color: #7d7d7d; /* c9c */
431
  background-color: #7d7d7d; /* c9c */
432
  color: #000 !important;
432
  color: #000 !important;
433
  text-decoration: none !important;
433
  text-decoration: none !important;
434
  text-transform: uppercase;
434
  text-transform: uppercase;
435
  /* overflow: hidden; */
435
  /* overflow: hidden; */
436
  cursor: pointer !important;
436
  cursor: pointer !important;
437
}
437
}
438
438
439
.button .text {
439
.button .text {
440
  position: absolute;
440
  position: absolute;
441
  bottom: 0;
441
  bottom: 0;
442
  right: 0.5em;
442
  right: 0.5em;
443
  cursor: pointer !important;
443
  cursor: pointer !important;
444
}
444
}
445
445
446
.button.command {
446
.button.command {
447
  border-radius: 1.2em;
447
  border-radius: 1.2em;
448
}
448
}
449
449
450
.button.command .text {
450
.button.command .text {
451
  position: absolute;
451
  position: absolute;
452
  bottom: 0;
452
  bottom: 0;
453
  right: 1em;
453
  right: 1em;
454
}
454
}
455
455
456
.button:hover,
456
.button:hover,
457
.button:focus,
457
.button:focus,
458
.button.selected:hover,
458
.button.selected:hover,
459
.button.selected:focus,
459
.button.selected:focus,
460
.group .button:hover,
460
.group .button:hover,
461
.group .button:focus,
461
.group .button:focus,
462
.group .button:visited:hover,
462
.group .button:visited:hover,
463
.group .button:visited:focus
463
.group .button:visited:focus
464
{
464
{
465
  background-color: #f90 !important;
465
  background-color: #f90 !important;
466
  color: #000 !important;
466
  color: #000 !important;
467
}
467
}
468
468
469
.button:active,
469
.button:active,
470
.button.selected:active,
470
.button.selected:active,
471
.group .button:active,
471
.group .button:active,
472
.group .button:visited:active
472
.group .button:visited:active
473
{
473
{
474
  background-color: #fff !important;
474
  background-color: #fff !important;
475
  color: #000 !important;
475
  color: #000 !important;
476
}
476
}
477
477
478
.menu bow {
478
.menu bow {
479
  width: 8em;
479
  width: 8em;
480
}
480
}
481
481
482
.menu .button {
482
.menu .button {
483
  display: block;
483
  display: block;
484
  width: 8em;
484
  width: 8em;
485
  height: 1em;
485
  height: 1em;
486
  line-height: 1;
486
  line-height: 1;
487
  background-color: #9cf;
487
  background-color: #9cf;
488
  color: #000 !important;
488
  color: #000 !important;
489
  text-overflow: ellipsis;
489
  text-overflow: ellipsis;
490
  white-space: nowrap;
490
  white-space: nowrap;
491
}
491
}
492
492
493
#connectors {
493
#connectors {
494
  position: fixed;
494
  position: fixed;
495
  left: 8.4em;
495
  left: 8.4em;
496
  top: 5.6em;
496
  top: 5.6em;
497
}
497
}
498
498
499
#connectors div {
499
#connectors div {
500
  position: absolute;
500
  position: absolute;
501
}
501
}
502
502
503
#connectors .top {
503
#connectors .top {
504
  top: 0;
504
  top: 0;
505
  height: 1em;
505
  height: 1em;
506
}
506
}
507
507
508
#connectors .mid {
508
#connectors .mid {
509
  top: 13.6em;
509
  top: 13.6em;
510
  height: 0.8em;
510
  height: 0.8em;
511
}
511
}
512
512
513
#connectors .left {
513
#connectors .left {
514
  left: 0;
514
  left: 0;
515
  width: 2em;
515
  width: 2em;
516
}
516
}
517
517
518
#connectors .right {
518
#connectors .right {
519
  left: 2.2em;
519
  left: 2.2em;
520
  width: 0em;
520
  width: 0em;
521
}
521
}
522
522
523
.multi-display
523
.multi-display
524
{
524
{
525
  position: fixed;
525
  position: fixed;
526
  top: 2.6em;
526
  top: 2.6em;
527
  left: 10.6em;
527
  left: 10.6em;
528
  right: 0;
528
  right: 0;
529
}
529
}
530
530
531
.multi-display .button
531
.multi-display .button
532
{
532
{
533
  width: 5em !important;
533
  width: 5em !important;
534
}
534
}
535
535
536
#content.fixed {
536
#content.fixed {
537
  position: fixed;
537
  position: fixed;
538
  margin-right: 0.2em;
538
  margin-right: 0.2em;
539
  top: 12em;
539
  top: 12em;
540
  right: 0;
540
  right: 0;
541
  bottom: 0.2em;
541
  bottom: 0.2em;
542
  left: 16.8em;
542
  left: 16.8em;
543
  overflow: hidden;
543
  overflow: hidden;
544
}
544
}
545
545
546
.multi-display .upper
546
.multi-display .upper
547
{
547
{
548
  position: absolute;
548
  position: absolute;
549
  top: 0;
549
  top: 0;
550
  left: 0;
550
  left: 0;
551
  right: 0;  
551
  right: 0;  
552
  height: 7.5em;  
552
  height: 7.5em;  
553
  padding-right: 0.2em;
553
  padding-right: 0.2em;
554
  background-color: black;
554
  background-color: black;
555
}
555
}
556
556
557
.multi-display .upper .content
557
.multi-display .upper .content
558
{
558
{
559
  position: absolute;
559
  position: absolute;
560
  top: 0;
560
  top: 0;
561
  left: 6em;
561
  left: 6em;
562
  bottom: 1.3em;
562
  bottom: 1.3em;
563
  right: 0.2em;
563
  right: 0.2em;
564
  background-color: black;
564
  background-color: black;
565
  color: white;
565
  color: white;
566
  text-align: right;
566
  text-align: right;
567
  overflow: hidden;
567
  overflow: hidden;
568
  text-overflow: ellipsis;
568
  text-overflow: ellipsis;
569
}
569
}
570
570
571
.multi-display .upper .content .title
571
.multi-display .upper .content .title
572
{
572
{
573
  position: absolute;
573
  position: absolute;
574
  top: 0;
574
  top: 0;
575
  left: 0;
575
  left: 0;
576
  height: 1em;
576
  height: 1em;
577
  right: 0;
577
  right: 0;
578
  background-color: black;
578
  background-color: black;
579
  color: white;
579
  color: white;
580
  font-size: 2.4em;
580
  font-size: 2.4em;
581
  text-transform: uppercase;
581
  text-transform: uppercase;
582
  text-align: right;
582
  text-align: right;
583
  overflow: hidden;
583
  overflow: hidden;
584
}
584
}
585
585
586
.multi-display .upper .content .title span
586
.multi-display .upper .content .title span
587
{
587
{
588
  white-space: nowrap;
588
  white-space: nowrap;
589
}
589
}
590
590
591
.multi-display .upper .content .analysis {
591
.multi-display .upper .content .analysis {
592
  position: absolute;
592
  position: absolute;
593
  top: 2.4em;
593
  top: 2.4em;
594
  bottom: 0;
594
  bottom: 0;
595
  right: 11em;
595
  right: 11em;
596
  left: 0;
596
  left: 0;
597
  overflow: hidden;
597
  overflow: hidden;
598
  text-align: left;
598
  text-align: left;
599
  cursor: default;
599
  cursor: default;
600
}
600
}
601
601
602
.multi-display .upper .content .analysis table {
602
.multi-display .upper .content .analysis table {
603
  border-collapse: collapse;
603
  border-collapse: collapse;
604
  line-height: 1.2;
604
  line-height: 1.2;
605
  max-width: 100%;
605
  max-width: 100%;
606
}
606
}
607
607
608
.multi-display .upper .content .analysis th {
608
.multi-display .upper .content .analysis th {
609
  padding: 0 0.4em 0 0.1em;
609
  padding: 0 0.4em 0 0.1em;
610
  font-weight: normal;
610
  font-weight: normal;
611
  text-align: left;
611
  text-align: left;
612
  text-transform: uppercase;
612
  text-transform: uppercase;
613
  white-space: nowrap;
613
  white-space: nowrap;
614
  vertical-align: baseline;
614
  vertical-align: baseline;
615
}
615
}
616
616
-
 
617
.multi-display .upper .content .analysis th:nth-child(3) {
-
 
618
  padding-left: 0.7em;
-
 
619
}
-
 
620
617
.multi-display .upper .content .analysis td {
621
.multi-display .upper .content .analysis td {
618
  padding: 0 0.1em 0 0.1em;
622
  padding: 0 0.1em 0 0.1em;
619
  text-overflow: ellipsis;
623
  text-overflow: ellipsis;
620
  white-space: nowrap;
624
  white-space: nowrap;
621
  vertical-align: baseline;
625
  vertical-align: baseline;
622
  text-overflow: ellipsis;
626
  text-overflow: ellipsis;
623
}
627
}
624
628
625
.multi-display .upper .content .analysis td sup {
629
.multi-display .upper .content .analysis td sup {
626
  line-height: 1;
630
  line-height: 1;
627
  font-weight: 500;
631
  font-weight: 500;
628
}
632
}
629
633
630
.multi-display .upper .content .commands
634
.multi-display .upper .content .commands
631
{
635
{
632
  position: absolute;
636
  position: absolute;
633
  margin: 0;
637
  margin: 0;
634
  padding: 0;
638
  padding: 0;
635
  top: 2.4em;
639
  top: 2.4em;
636
  right: 0;
640
  right: 0;
637
  height: 3.8em;
641
  height: 3.8em;
638
  width: 10.2em;
642
  width: 10.2em;
639
  list-style: none;
643
  list-style: none;
640
}
644
}
641
645
642
.multi-display .upper .content .commands li
646
.multi-display .upper .content .commands li
643
{
647
{
644
  position: absolute;
648
  position: absolute;
645
  margin: 0;
649
  margin: 0;
646
  width: 5em;
650
  width: 5em;
647
  height: 1.8em;
651
  height: 1.8em;
648
}
652
}
649
653
650
.multi-display .upper .content .commands .button
654
.multi-display .upper .content .commands .button
651
{
655
{
652
  position: absolute;
656
  position: absolute;
653
  top: 0;
657
  top: 0;
654
  left: 0;
658
  left: 0;
655
  margin: 0;
659
  margin: 0;
656
  height: 1.8em;
660
  height: 1.8em;
657
  border-radius: 0.9em;
661
  border-radius: 0.9em;
658
  text-transform: none;
662
  text-transform: none;
659
}
663
}
660
664
661
.multi-display .upper .content .commands .button .text {
665
.multi-display .upper .content .commands .button .text {
662
  right: 1em;
666
  right: 1em;
663
}
667
}
664
668
665
.multi-display .upper .content #cmd1
669
.multi-display .upper .content #cmd1
666
{
670
{
667
  top: 0;
671
  top: 0;
668
  right: 5.2em;
672
  right: 5.2em;
669
}
673
}
670
674
671
.multi-display .upper .content #cmd2
675
.multi-display .upper .content #cmd2
672
{
676
{
673
  top: 0;
677
  top: 0;
674
  right: 0;
678
  right: 0;
675
}
679
}
676
680
677
.multi-display .upper .content #cmd3
681
.multi-display .upper .content #cmd3
678
{
682
{
679
  top: 2em;
683
  top: 2em;
680
  right: 0;
684
  right: 0;
681
}
685
}
682
686
683
.multi-display .upper .content #cmd4
687
.multi-display .upper .content #cmd4
684
{
688
{
685
  top: 2em;
689
  top: 2em;
686
  right: 5.2em;
690
  right: 5.2em;
687
}
691
}
688
692
689
.multi-display .upper .elbo-button
693
.multi-display .upper .elbo-button
690
{
694
{
691
  position: absolute;
695
  position: absolute;
692
  top: 0;
696
  top: 0;
693
  left: 0;
697
  left: 0;
694
  width: 5em;
698
  width: 5em;
695
  height: 4em;
699
  height: 4em;
696
  background-color: #c9c !important;
700
  background-color: #c9c !important;
697
  color: #000 !important;
701
  color: #000 !important;
698
  cursor: default;
702
  cursor: default;
699
}
703
}
700
704
701
.multi-display .upper .elbo-button .text
705
.multi-display .upper .elbo-button .text
702
{
706
{
703
  position: absolute;
707
  position: absolute;
704
  bottom: 0;
708
  bottom: 0;
705
  right: 0.2em;
709
  right: 0.2em;
706
  max-width: 4em;
710
  max-width: 4em;
707
  max-height: 3.6em;
711
  max-height: 3.6em;
708
  text-align: right;
712
  text-align: right;
709
  overflow: hidden;
713
  overflow: hidden;
710
}
714
}
711
715
712
.multi-display .upper .elbo
716
.multi-display .upper .elbo
713
{
717
{
714
  position: absolute;
718
  position: absolute;
715
  left: 0;
719
  left: 0;
716
  top: 4.2em;
720
  top: 4.2em;
717
  width: 6em;
721
  width: 6em;
718
  height: 3.2em;
722
  height: 3.2em;
719
  border-bottom-left-radius: 2em;
723
  border-bottom-left-radius: 2em;
720
  background-color: #9cf;
724
  background-color: #9cf;
721
  color: #000;
725
  color: #000;
722
}
726
}
723
727
724
.multi-display .upper .elbo .text
728
.multi-display .upper .elbo .text
725
{
729
{
726
  position: absolute;
730
  position: absolute;
727
  top: 0;
731
  top: 0;
728
  right: 1.2em;
732
  right: 1.2em;
729
  max-width: 4em;
733
  max-width: 4em;
730
  max-height: 2.2em;
734
  max-height: 2.2em;
731
  text-align: right;
735
  text-align: right;
732
  overflow: hidden;
736
  overflow: hidden;
733
  cursor: default;
737
  cursor: default;
734
}
738
}
735
739
736
.elbo [title],
740
.elbo [title],
737
.button [title]
741
.button [title]
738
{
742
{
739
  border-bottom: none;
743
  border-bottom: none;
740
}
744
}
741
745
742
.multi-display .upper .elbo .concave
746
.multi-display .upper .elbo .concave
743
{
747
{
744
  position: absolute;
748
  position: absolute;
745
  left: 5em;
749
  left: 5em;
746
  top: 0;
750
  top: 0;
747
  width: 1.1em;
751
  width: 1.1em;
748
  height: 2.2em;
752
  height: 2.2em;
749
  border-bottom-left-radius: 1em;
753
  border-bottom-left-radius: 1em;
750
  background-color: black;
754
  background-color: black;
751
}
755
}
752
756
753
.multi-display .border
757
.multi-display .border
754
{
758
{
755
  height: 1em;
759
  height: 1em;
756
}
760
}
757
761
758
.multi-display .upper .border
762
.multi-display .upper .border
759
{
763
{
760
  position: absolute;
764
  position: absolute;
761
  top: 6.4em;
765
  top: 6.4em;
762
  left: 6em;
766
  left: 6em;
763
  right: 0.2em;
767
  right: 0.2em;
764
}
768
}
765
769
766
.multi-display .border div
770
.multi-display .border div
767
{
771
{
768
  position: absolute;
772
  position: absolute;
769
  top: 0;
773
  top: 0;
770
  height: 1em;
774
  height: 1em;
771
}
775
}
772
776
773
.multi-display .upper .border div
777
.multi-display .upper .border div
774
{
778
{
775
  background-color: #9cf;
779
  background-color: #9cf;
776
}
780
}
777
781
778
.multi-display .upper .border .left
782
.multi-display .upper .border .left
779
{
783
{
780
  left: 0;
784
  left: 0;
781
  right: 5.2em;
785
  right: 5.2em;
782
  height: 1em;
786
  height: 1em;
783
}
787
}
784
 
788
 
785
.multi-display .upper .border .right
789
.multi-display .upper .border .right
786
{
790
{
787
  width: 5em;
791
  width: 5em;
788
  right: 0;
792
  right: 0;
789
}
793
}
790
 
794
 
791
.multi-display .lower
795
.multi-display .lower
792
{
796
{
793
  position: absolute;
797
  position: absolute;
794
  top: 7.5em;
798
  top: 7.5em;
795
  left: 0;
799
  left: 0;
796
  height: 0.1em;
800
  height: 0.1em;
797
  right: 0;
801
  right: 0;
798
  background-color: black;
802
  background-color: black;
799
}
803
}
800
804
801
.multi-display .lower .elbo
805
.multi-display .lower .elbo
802
{
806
{
803
  position: absolute;
807
  position: absolute;
804
  top: 0.1em;
808
  top: 0.1em;
805
  left: 0;
809
  left: 0;
806
  width: 6em;
810
  width: 6em;
807
  height: 3em;
811
  height: 3em;
808
  border-top-left-radius: 2em;
812
  border-top-left-radius: 2em;
809
  background-color: #fc6;
813
  background-color: #fc6;
810
}
814
}
811
815
812
.multi-display .lower .elbo .concave
816
.multi-display .lower .elbo .concave
813
{
817
{
814
  position: absolute;
818
  position: absolute;
815
  left: 5em;
819
  left: 5em;
816
  top: 1em;
820
  top: 1em;
817
  width: 1.1em;
821
  width: 1.1em;
818
  height: 2.1em;
822
  height: 2.1em;
819
  background-color: black;
823
  background-color: black;
820
  border-top-left-radius: 1em;
824
  border-top-left-radius: 1em;
821
}
825
}
822
826
823
.multi-display .lower .bg
827
.multi-display .lower .bg
824
{
828
{
825
  position: fixed;
829
  position: fixed;
826
  top: 13.4em;
830
  top: 13.4em;
827
  bottom: 0.2em;
831
  bottom: 0.2em;
828
  width: 5em;
832
  width: 5em;
829
  background-color: #fc6;
833
  background-color: #fc6;
830
}
834
}
831
835
832
.multi-display .lower .border-container
836
.multi-display .lower .border-container
833
{
837
{
834
  position: absolute;
838
  position: absolute;
835
  top: 0.1em;
839
  top: 0.1em;
836
  left: 6em;
840
  left: 6em;
837
  right: 0;
841
  right: 0;
838
  height: 1.2em;
842
  height: 1.2em;
839
  background-color: black;
843
  background-color: black;
840
}
844
}
841
845
842
.multi-display .lower .border
846
.multi-display .lower .border
843
{
847
{
844
  position: absolute;
848
  position: absolute;
845
  left: 0;
849
  left: 0;
846
  right: 0.2em;
850
  right: 0.2em;
847
}
851
}
848
852
849
.multi-display .lower .border div
853
.multi-display .lower .border div
850
{
854
{
851
  background-color: #fc6;
855
  background-color: #fc6;
852
}
856
}
853
857
854
.multi-display .lower .border .left
858
.multi-display .lower .border .left
855
{
859
{
856
  left: 0;
860
  left: 0;
857
  right: 5.2em;
861
  right: 5.2em;
858
}
862
}
859
863
860
.multi-display .lower .border .right
864
.multi-display .lower .border .right
861
{
865
{
862
  width: 5em;
866
  width: 5em;
863
  right: 0;
867
  right: 0;
864
}
868
}
865
869
866
.menu .button.secondary,
870
.menu .button.secondary,
867
.multi-display .lower .elbo.secondary,
871
.multi-display .lower .elbo.secondary,
868
.multi-display .lower .bg.secondary,
872
.multi-display .lower .bg.secondary,
869
.multi-display .lower .border.secondary
873
.multi-display .lower .border.secondary
870
{
874
{
871
  background-color: #f96;
875
  background-color: #f96;
872
}
876
}
873
877
874
.menu .button.ancillary,
878
.menu .button.ancillary,
875
.multi-display .lower .elbo.ancillary,
879
.multi-display .lower .elbo.ancillary,
876
.multi-display .lower .bg.ancillary,
880
.multi-display .lower .bg.ancillary,
877
.multi-display .lower .border.ancillary
881
.multi-display .lower .border.ancillary
878
{
882
{
879
  background-color: #c9c;
883
  background-color: #c9c;
880
}
884
}
881
885
882
.menu .button.database,
886
.menu .button.database,
883
.multi-display .lower .elbo.database,
887
.multi-display .lower .elbo.database,
884
.multi-display .lower .bg.database,
888
.multi-display .lower .bg.database,
885
.multi-display .lower .border.database
889
.multi-display .lower .border.database
886
{
890
{
887
  background-color: #c66;
891
  background-color: #c66;
888
}
892
}
889
893
890
.menu .button .text {
894
.menu .button .text {
891
  position: static;
895
  position: static;
892
  margin: 0 0.25em;
896
  margin: 0 0.25em;
893
}
897
}
894
898
895
.button.selected {
899
.button.selected {
896
  background-color: #fc6 !important;
900
  background-color: #fc6 !important;
897
  color: #000 !important;  
901
  color: #000 !important;  
898
}
902
}
899
903
900
.group {
904
.group {
901
  margin: 0 auto;
905
  margin: 0 auto;
902
  position: relative;
906
  position: relative;
903
  width: 7.7em;
907
  width: 7.7em;
904
}
908
}
905
909
906
.group .separator {
910
.group .separator {
907
  float: left;
911
  float: left;
908
  position: absolute;
912
  position: absolute;
909
  top: 0;
913
  top: 0;
910
  left: 0;
914
  left: 0;
911
  width: 1.5em;
915
  width: 1.5em;
912
  height: 100%;
916
  height: 100%;
913
  background-color: #c66;
917
  background-color: #c66;
914
  color: #000;
918
  color: #000;
915
}
919
}
916
920
917
.group .separator:after {
921
.group .separator:after {
918
  position: absolute;
922
  position: absolute;
919
  width: 0.8em;
923
  width: 0.8em;
920
  height: 0.5em;
924
  height: 0.5em;
921
  bottom: 0.25em;
925
  bottom: 0.25em;
922
  left: 0.25em;
926
  left: 0.25em;
923
  background-color: #000;
927
  background-color: #000;
924
  content: "\a0";
928
  content: "\a0";
925
}
929
}
926
930
927
.group ul {
931
.group ul {
928
  margin-left: 1.7em;
932
  margin-left: 1.7em;
929
}
933
}
930
934
931
.group li {
935
.group li {
932
  margin-bottom: 0;
936
  margin-bottom: 0;
933
}
937
}
934
938
935
.group .button:visited,
939
.group .button:visited,
936
.group .button
940
.group .button
937
{
941
{
938
  display: block;
942
  display: block;
939
  position: relative;
943
  position: relative;
940
  width: 6em;
944
  width: 6em;
941
  background-color: #99f !important;
945
  background-color: #99f !important;
942
}
946
}
943
947
944
.group li:last-child .button
948
.group li:last-child .button
945
{
949
{
946
  margin-bottom: 0;
950
  margin-bottom: 0;
947
}
951
}
948
952
949
.button.right {
953
.button.right {
950
  border-top-right-radius: 1em;
954
  border-top-right-radius: 1em;
951
  border-bottom-right-radius: 1em;
955
  border-bottom-right-radius: 1em;
952
}
956
}
953
957
954
.button.right .text {
958
.button.right .text {
955
  right: 1em;
959
  right: 1em;
956
}
960
}
957
961
958
.button.left {
962
.button.left {
959
  border-top-left-radius: 1em;
963
  border-top-left-radius: 1em;
960
  border-bottom-left-radius: 1em;
964
  border-bottom-left-radius: 1em;
961
}
965
}
962
966
963
.group .button .key {
967
.group .button .key {
964
  display: inline-block;
968
  display: inline-block;
965
  position: absolute;
969
  position: absolute;
966
  left: 0.2em;
970
  left: 0.2em;
967
  top: 0;
971
  top: 0;
968
  bottom: 0;
972
  bottom: 0;
969
  padding: 0 0.1em;
973
  padding: 0 0.1em;
970
  background-color: #000;
974
  background-color: #000;
971
  color: #f90;
975
  color: #f90;
972
  font-size: 2.4em;
976
  font-size: 2.4em;
973
  text-transform: uppercase;
977
  text-transform: uppercase;
974
  line-height: 0.9;
978
  line-height: 0.9;
975
}
979
}
976
980
977
<?php require_once 'lcars-responsive.css'; ?>
981
<?php require_once 'lcars-responsive.css'; ?>