-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
53 lines (45 loc) · 889 Bytes
/
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
html {
font-family: sans-serif;
}
.leaflet-routing-icon-undefined { background-position: -240px 0; }
.map {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.about {
position: absolute;
width: 320px;
height: 380px;
background: white;
opacity: 0.7;
left: 10px;
bottom: 10px;
padding: 12px;
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
border-radius: 4px;
}
#sidebar {
opacity: 0.8;
}
.handle {
display: inline-block;
transition: -webkit-transform 0.1s linear;
cursor: pointer;
}
.examples {
overflow-y: hidden;
transition: height 0.25s ease-in;
}
.hide {
height: 0;
}
.closed {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
}