-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
90 lines (75 loc) · 1.41 KB
/
index.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
* {
margin: 0;
border: 0;
}
body {
display: flex;
flex-direction: column;
position: relative;
}
.header {
position: absolute;
top: 0;
left: 0;
height: 50px;
width: 100%;
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
text-transform: uppercase;
font-family: "Lato";
color: rgba(220, 221, 225, 0.9);
background-color: rgba(34, 34, 34, 0.8);
}
#mapid {
height: 100vh;
width: 100%;
}
.logo {
height: 40px;
filter: invert(100%) opacity(70%);
}
path.leaflet-interactive.animate {
stroke-dasharray: 1920;
stroke-dashoffset: 1920;
animation: dash 20s linear 3s forwards;
}
@keyframes dash {
to {
stroke-dashoffset: 0;
}
}
.leaflet-routing-container {
visibility: hidden;
}
/*Legend specific*/
.legend {
padding: 6px 8px;
font: 11px Lato;
background: white;
background: rgba(220, 221, 225, 0.3);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
border-radius: 2px;
line-height: 24px;
/* color: #353b48; */
color: rgba(220, 221, 225, 0.5);
}
.legend h4 {
text-align: center;
font-size: 12px;
text-transform: uppercase;
margin: 2px 12px 8px;
}
.legend span {
position: relative;
bottom: 3px;
text-transform: uppercase;
}
.legend i {
width: 18px;
height: 18px;
float: left;
margin: 0 8px 0 0;
opacity: 0.7;
}