-
Notifications
You must be signed in to change notification settings - Fork 14
/
style.css
114 lines (96 loc) · 1.46 KB
/
style.css
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
html, body {
text-align: center;
font-family: 'Crimson Text', Verdana;
margin: 0;
padding: 0;
}
div.title {
position: absolute;
z-index: 10;
color: white;
font-size: 1.8em;
top: 0;
left: 0;
padding: 10px;
background: rgba(0, 0, 0, 0.3);
}
div.title a {
color: white;
}
div.canvas-container {
margin: 0 auto;
padding: 0;
box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
}
a.fullscreen {
padding: 7px;
margin: 10px;
display: block;
}
canvas.floating {
position: absolute;
top:0;
left:0;
}
canvas {
background: black;
cursor: crosshair;
}
#log-panel {
font-family: Arial;
margin: 0;
position: fixed;
top: 0;
right: 0;
padding: 5px;
color: white;
background-color: red;
font-weight: bold;
font-size: 0.9em;
z-index: 4000;
}
#container {
width: 1024px;
margin: auto;
}
body.no-webgl #container {
display: none;
}
div.fallback {
display: none;
}
body.no-webgl div.fallback {
display: block;
}
.description {
font-size: 13px;
padding: 5px;
text-align: left;
border: 1px solid #CCC;
background-color: #FFF1A8;
margin-bottom: 10px;
}
h1 {
text-shadow: rgba(0, 0, 0, 0.2) 0 0 3px;
margin: 5px;
}
.controls {
position: relative;
background: #E0ECFF;
padding: 7px;
border: 1px solid #ccc;
margin: 7px 0;
}
.controls table tr td {
text-align: left;
margin: auto;
font-size: 15px;
}
.canvas-container {
margin: auto;
position: relative;
}
.footer {
margin: 4px;
font-size: 13px;
}