-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (97 loc) · 1.4 KB
/
style.css
File metadata and controls
120 lines (97 loc) · 1.4 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* page style */
body {
font-family: Trebuchet MS;
}
header {
padding: 30px;
}
footer {
padding: 30px;
}
.container {
padding: 30px;
}
.canvas {
float: left;
border: 1px black solid;
}
.text_container {
float: right;
margin: 1px;
}
.text{
float: left;
width: 250px;
}
.cover {
padding: 10px;
}
.description {
width: 400px;
background-color: aliceblue;
}
.clear {
clear: both;
}
/* basemap style */
.buildings {
fill: #D9C5CC;
}
.water{
fill:#57A5CF;
}
.green {
fill:#89B53E;
}
/* poi style */
.poi {
fill: #6E0DBD;
stroke: #6E0DBD;
stroke-width: 4;
}
.poi.active {
fill: orange;
stroke: orange;
stroke-width: 6;
}
.poi:hover {
stroke-width: 9;
fill: orange;
stroke: orange;
}
.label.active {
fill:white;
}
.label {
fill:white;
font-size: 8px;
font-family: Trebuchet MS;
text-align: left;
text-anchor: middle;
}
.label:hover {
font-size: 12px; /*why it does not work?*/
}
div.tooltip {
position: absolute;
text-align: left;
width: 300px;
min-height: 20px;
padding: 4px;
font: 15px sans-serif;
background: aliceblue;
border: 0px;
border-radius: 8px;
pointer-events: none;
}
/* walk style */
.walk{
stroke: #6E0DBD;
fill:none;
stroke-width: 2;
}
#borderPath {
stroke: black;
stroke-width: 3;
fill: none;
}