-
Notifications
You must be signed in to change notification settings - Fork 0
/
prune.css
86 lines (76 loc) · 2.62 KB
/
prune.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
.prunecluster {
font-size: 12px;
border-radius: 20px;
transition: all 0.3s linear;
}
.leaflet-marker-icon.prunecluster-anim,
.leaflet-marker-shadow.prunecluster-anim,
.leaflet-markercluster-icon.prunecluster-anim {
transition: all 0.3s linear;
}
.leaflet-zoom-anim .leaflet-zoom-animated.leaflet-marker-icon,
.leaflet-zoom-anim .leaflet-zoom-animated.leaflet-marker-shadow,
.leaflet-zoom-anim .leaflet-zoom-animated.leaflet-markercluster-icon {
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
}
.prunecluster div {
width: 30px;
height: 30px;
text-align: center;
margin-left: 5px;
margin-top: 5px;
border-radius: 50%;
}
.prunecluster div span {
line-height: 30px;
}
.prunecluster-small {
background-color: #b5e28c;
background-color: rgba(181, 226, 140, 0.75);
}
.prunecluster-small div {
width: 28px;
height: 28px;
background-color: #6ecc39;
background-color: rgba(110, 204, 57, 0.75);
}
.prunecluster-small div span {
line-height: 28px;
}
.prunecluster-medium {
background-color: #f1d357;
background-color: rgba(241, 211, 87, 0.75);
}
.prunecluster-medium div {
background-color: #f0c20c;
background-color: rgba(240, 194, 12, 0.75);
}
.prunecluster-large {
background-color: #fd9c73;
background-color: rgba(253, 156, 115, 0.75);
}
.prunecluster-large div {
width: 34px;
height: 34px;
background-color: #f18017;
background-color: rgba(241, 128, 23, 0.75);
}
.prunecluster-large div span {
line-height: 34px;
}
.prunecluster-intensity-0 { background-color: rgba(0, 255, 0, 0.75) }
.prunecluster-intensity-1 { background-color: rgba(64, 255, 0, 0.75) }
.prunecluster-intensity-2 { background-color: rgba(128, 255, 0, 0.75) }
.prunecluster-intensity-3 { background-color: rgba(191, 255, 0, 0.75) }
.prunecluster-intensity-4 { background-color: rgba(255, 255, 0, 0.75) }
.prunecluster-intensity-5 { background-color: rgba(255, 255, 64, 0.75) }
.prunecluster-intensity-6 { background-color: rgba(255, 255, 128, 0.75) }
.prunecluster-intensity-7 { background-color: rgba(255, 255, 192, 0.75) }
.prunecluster-intensity-8 { background-color: rgba(255, 192, 0, 0.75) }
.prunecluster-intensity-9 { background-color: rgba(255, 128, 0, 0.75) }
.prunecluster-intensity-10 { background-color: rgba(255, 64, 0, 0.75) }
.prunecluster-intensity-11 { background-color: rgba(255, 0, 0, 0.75) }
.prunecluster-intensity-12 { background-color: rgba(192, 0, 0, 0.75) }
.prunecluster-intensity-13 { background-color: rgba(128, 0, 0, 1) }
.prunecluster-intensity-14 { background-color: rgba(64, 0, 0, 1) }
.prunecluster-intensity-15 { background-color: rgba(0, 0, 0, 1) }