1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
| @import url(../../../Source/Widgets/widgets.css);
| @import url(../../../Source/Widgets/lighter.css);
|
| html {
| height: 100%;
| }
|
| body {
| background: #000;
| color: #eee;
| font-family: sans-serif;
| font-size: 9pt;
| padding: 0;
| margin: 0;
| width: 100%;
| height: 100%;
| overflow: hidden;
| }
|
| .fullSize {
| display: block;
| position: absolute;
| top: 0;
| left: 0;
| border: none;
| width: 100%;
| height: 100%;
| }
|
| #loadingOverlay {
| position: absolute;
| top: 0;
| left: 0;
| opacity: 0.9;
| width: 100%;
| height: 100%;
| display: none;
| }
|
| #loadingOverlay h1 {
| text-align: center;
| position: relative;
| top: 50%;
| margin-top: -0.5em;
| }
|
| .sandcastle-loading #loadingOverlay {
| display: block;
| }
|
| .sandcastle-loading #toolbar {
| display: none;
| }
|
| #toolbar {
| margin: 5px;
| padding: 2px 5px;
| position: absolute;
| }
|
| .infoPanel {
| background: rgba(42, 42, 42, 0.8);
| padding: 4px;
| border: 1px solid #444;
| border-radius: 4px;
| }
|
|