-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
46 lines (38 loc) · 560 Bytes
/
app.css
File metadata and controls
46 lines (38 loc) · 560 Bytes
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
/*
Set the background to 'black', because it represents space.
*/
body {
background: black;
}
.title-text {
fill: white;
font-size: 34px;
text-anchor: middle;
}
/*
Style the visual the represents the earth.
*/
.earth {
fill: #01499D;
}
/*
Color code the different sizes of space junk.
*/
.junk.SMALL {
fill: yellow;
}
.junk.MEDIUM {
fill: orange;
}
.junk.LARGE {
fill: red;
}
.hover-title {
font-weight: bold;
font-size: 20px;
}
.hover-text {
fill: white;
text-anchor: middle;
font-size: 16px;
}