-
Notifications
You must be signed in to change notification settings - Fork 0
/
planets.css
102 lines (84 loc) · 1.25 KB
/
planets.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
body {
background: #232323;
}
p {
color: #616161;
}
.meta-bar {
z-index: 400
}
.page-intro {
margin: 50px 0 25px;
}
.container-top {
margin-bottom: 50px;
}
.page-header {
border-color: #4f9edd;
}
.planet:hover {
background: rgba(141, 186, 244, 0);
cursor: pointer;
opacity: 1;
border: 5px solid #fff;
}
.planets {
width: 100%;
overflow: auto;
}
.planets circle {
cursor: pointer;
}
.legend, .btn-group-filter {
float: left;
}
.btn-group-filter {
margin-right: 10px;
}
.btn-group-filter .btn, label {
background: #232323;
color: #fff
}
.legend li {
color: #fff;
float: left;
list-style: none;
line-height: 30px;
margin-right: 30px;
}
.legend li .legend-earth,
.legend li .legend-planet {
width: 30px;
height: 30px;
border-radius: 15px;
border: 2px solid #0071ff;
float: left;
margin-right: 5px;
}
.legend li .legend-planet {
background: rgba(145, 244, 184, 0.5);
border: 0;
}
.meta-container {
position: absolute;
left: 0;
margin: 50px 0 0 50px;
background: rgba(35, 35, 35, .8);
z-index: 500;
border-radius: 5px;
padding: 15px;
}
.meta-container pre {
background: transparent;
border: 0;
padding: 0;
color: #ffffff;
}
.footer {
width: 100%;
padding-top: 10px;
}
.footer p {
text-align: center;
color: #969696;
}