-
Notifications
You must be signed in to change notification settings - Fork 47
/
style.css
67 lines (55 loc) · 792 Bytes
/
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
html, body {
height: 100%;
}
body {
margin: 0;
overflow: hidden;
background-color: #303030;
font-family: 'Alegreya Sans SC';
color: #eee;
}
p#info {
position: absolute;
bottom: 0;
margin: 10px;
}
a {
color: #ff7600;
text-decoration: none;
}
#controls {
position: absolute;
top: 0;
list-style-type: none;
margin: 5px;
padding: 0;
max-width: 70%;
}
#controls > li {
margin: 0 5px;
padding: 0;
float: left;
}
#controls > li:after {
content: '~';
color: #999;
}
#controls > li:last-child:after {
content: none;
}
#controls > li a, #controls > li label {
margin-right: 10px;
font-size: 1.2em;
color: #eee;
line-height: 2em;
}
#controls > li select {
color: #333;
font-size: 1em;
}
#controls > li a:hover {
color: #ff7600;
}
#scene {
height: 100%;
}