-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathradar.css
More file actions
44 lines (44 loc) · 710 Bytes
/
radar.css
File metadata and controls
44 lines (44 loc) · 710 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
#blipDetails {
display: block;
width: 500px;
position: absolute;
right: 30px;
top: 70px;
padding: 0 20px;
background: white;
border: 1px solid #CCC;
border-radius: 6px;
box-shadow: #BBB 0 0 2px;
}
/* SVG STYLES */
path {
stroke: #CCC;
stroke-width: 1px;
fill: none;
}
text.label {
cursor: pointer;
font: 9px arial,helvetica,clean,sans-serif;
}
g.blip-container {
cursor: pointer;
}
g.blip-container use {
fill: #11A5E3;
}
g.active use {
fill: red;
}
g.active text {
opacity: 1 !important;
display: block !important;
}
/* shows text only when zoomed */
text.blip {
text-shadow: #fff 1px 1px 0;
font-weight: 100;
}
path.largest-arc {
fill: red;
fill-opacity: 0;
}