-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgravity.css
More file actions
91 lines (86 loc) · 1.26 KB
/
gravity.css
File metadata and controls
91 lines (86 loc) · 1.26 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
#svg {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
background: black;
}
#stats {
color: white;
padding: 5px;
position: fixed;
bottom: 10px;
right: 10px;
/* height: 100px; */
width: 230px;
background: black;
opacity: 0.75;
-moz-box-shadow:0px 0px 7px #000000;
-webkit-box-shadow:0px 0px 7px #000000;
box-shadow:0px 0px 7px #000000;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
#planet {
fill: blue;
}
#target-orbit {
stroke: #a44;
stroke-width: 1px;
fill: none;
}
#current-orbit {
stroke: #4a4;
stroke-width: 1px;
fill: none;
}
#target-circle {
stroke: #f33;
stroke-width: 2px;
fill: black;
}
#current-ship {
stroke: #3f3;
fill: #3f3;
}
#planet-line {
stroke-width: 1px;
stroke: blue;
}
#target-line {
stroke-width: 1px;
stroke: #f33;
}
#help {
display: none;
opacity: 0.8;
background: black;
position: fixed;
top: 40px;
left: 40px;
right: 40px;
bottom: 40px;
color: white;
}
.help-column {
display: inline-block;
width: 350px;
}
.key {
display: inline-block;
color: #ffb;
width: 80px;
}
.key span {
color: white;
padding: 0 2px;
}
#stats .key {
display: inline-block;
color: #ffb;
width: 150px;
}