-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (101 loc) · 1.69 KB
/
style.css
File metadata and controls
108 lines (101 loc) · 1.69 KB
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
body {
color:rgb(110,110,110);
background-color:black;
font-family: monospace;
white-space: pre;
overflow:hidden;
font-size: 14px;
}
a, a:hover, a:visited, a:active {
color:inherit;
}
#canvas {
position:absolute;
left: 0; top: 0;
width:100%; height:100%;
margin:0; padding: 0;
}
#statistics {
position:absolute;
right:42px; bottom:42px;
width:200px; height:30px;
margin:20px 20px; padding: 0;
text-align: right;
}
#controls {
position:absolute;
left: 42px; bottom: 42px;
width: 300px; height:auto;
margin:0; padding: 0;
overflow: auto;
display:flex;
flex-direction:column;
}
#controls input, #controls label, #controls select {
width: 90%;
display: block;
margin: 0 auto;
}
#controls > button {
width: 50%;
border: none;
padding: 0;
margin: 0 auto;
}
.control {
display:flex;
flex-direction:column;
border: 1px solid rgb(48, 48, 48);
background-color:rgba(0,0,0,0.75);
padding: 10px 0;
}
#controls .control > * + * {
margin-top:10px;
}
#controls .control + .control {
margin-top:10px;
}
#console {
position:absolute;
left: 42px; top: 0;
width: auto; height:4.9em;
margin:0; padding: 0;
overflow-y: hidden;
overflow-x: visible;
}
#info {
position:absolute;
right: 42px; top: 42px;
width: 300px; height:auto;
margin:0; padding: 0;
overflow: auto;
background-color:rgba(0,0,0,0.75)
}
.planet {
border: 1px solid rgb(48, 48, 48);
padding: 5px 10px;
}
.planet > .name {
font-weight: bold;
font-size: 18px;
color:rgb(128,128,128);
}
dl {
margin-left:20px;
margin-top:2px;
margin-bottom:5px;
}
dt {
float: left;
clear: left;
min-width: 100px;
text-align: right;
font-weight: bold;
}
dt:after {
content: ":";
}
dd {
margin: 0 0 0 100px;
padding: 0 0 0 0;
}