-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (88 loc) · 1.66 KB
/
style.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
103
104
105
body {
font-family: Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
}
#toolbar {
height: 3%;
position: absolute;
top: 0%;
right: 0%;
background: #2c3e50;
-webkit-box-shadow: 4px 3px 0px 0px rgba(52, 73, 94,0.75);
-moz-box-shadow: 4px 3px 0px 0px rgba(52, 73, 94,0.75);
box-shadow: 4px 3px 0px 0px rgba(52, 73, 94,0.75);
}
#toolbar ul {
color: #fff;
padding: 0.6em;
margin: 0;
text-align: right;
}
#toolbar ul li {
list-style: none;
display: inline;
margin: 0 1em 0 0;
}
#toolbar ul li a {
font-style: normal;
text-decoration: none;
color: #fff;
}
#toolbar ul li a:hover {
text-decoration: underline;
}
#toolbar span {
margin: 0 0.3em 0 0;
}
#map {
width: 100%;
height: 100%;
}
.custom-popup .leaflet-popup-content-wrapper {
background:#95a5a6;
color:#fff;
font-size:1em;
line-height:24px;
font-weight: normal;
text-decoration: none;
font-style: normal;
}
.custom-popup .leaflet-popup-content-wrapper a {
color:rgba(255,255,255,0.5);
}
.custom-popup .leaflet-popup-tip-container {
width:30px;
height:15px;
}
.custom-popup .leaflet-popup-tip {
border-left:15px solid transparent;
border-right:15px solid transparent;
border-top:15px solid #95a5a6;
}
.info {
position: absolute;
top: 10%;
left: 1%;
}
.graph {
width:100px;
height: 100px;
margin-top: 2em;
overflow: hidden;
background: transparent;
box-shadow: none;
float:left;
}
.info .graph img {
width: 300px;
position: absolute;
display: block;
clip: rect(0px,100px,100px,0px);
}
.info div {
background:#95a5a6;
padding: 1em;
border-radius: 0.8m;
color: #fff;
box-shadow: 0.1em 0.1em 0 #95a5a6;
}