devops4lib-jekyll-theme-conference 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.md +9 -0
- data/README.md +781 -0
- data/_includes/js/conference.js +55 -0
- data/_includes/js/init.js +39 -0
- data/_includes/js/lib/a_popper.min.js +4 -0
- data/_includes/js/lib/bootstrap.js +6 -0
- data/_includes/js/lib/jquery-3.5.1.min.js +2 -0
- data/_includes/js/lib/leaflet-easybutton.js +376 -0
- data/_includes/js/lib/leaflet-locatecontrol.js +4 -0
- data/_includes/js/lib/leaflet-providers.js +877 -0
- data/_includes/js/lib/leaflet.js +5 -0
- data/_includes/js/lib/syncscroll.js +140 -0
- data/_includes/js/live.js +779 -0
- data/_includes/js/map.js +43 -0
- data/_includes/js/modal.js +78 -0
- data/_includes/js/program.js +41 -0
- data/_includes/partials/checks.html +69 -0
- data/_includes/partials/footer.html +18 -0
- data/_includes/partials/get_day_hash.html +20 -0
- data/_includes/partials/get_day_time.html +21 -0
- data/_includes/partials/get_enable_map.html +11 -0
- data/_includes/partials/get_link.html +85 -0
- data/_includes/partials/get_link_types.html +15 -0
- data/_includes/partials/get_live_timestamps.html +49 -0
- data/_includes/partials/get_main_category.html +9 -0
- data/_includes/partials/get_page_description.html +23 -0
- data/_includes/partials/get_page_title.html +33 -0
- data/_includes/partials/get_room_live_href.html +8 -0
- data/_includes/partials/get_talk_time.html +24 -0
- data/_includes/partials/get_talk_timestamp.html +15 -0
- data/_includes/partials/get_time_pronoun.html +6 -0
- data/_includes/partials/header.html +67 -0
- data/_includes/partials/info_bar.html +38 -0
- data/_includes/partials/list_categories.html +4 -0
- data/_includes/partials/list_page_meta.html +23 -0
- data/_includes/partials/list_speakers.html +22 -0
- data/_includes/partials/list_sub_categories.html +8 -0
- data/_includes/partials/modal_link.html +21 -0
- data/_includes/partials/modal_live.html +49 -0
- data/_includes/partials/navbar.html +97 -0
- data/_includes/partials/navbar_rooms.html +36 -0
- data/_includes/partials/show_live_button.html +21 -0
- data/_includes/partials/show_room.html +5 -0
- data/_includes/partials/show_talk.html +5 -0
- data/_includes/partials/show_talk_duration.html +3 -0
- data/_includes/partials/show_talk_time.html +17 -0
- data/_layouts/config.html +78 -0
- data/_layouts/data.html +126 -0
- data/_layouts/default.html +5 -0
- data/_layouts/home.html +87 -0
- data/_layouts/location.html +25 -0
- data/_layouts/page.html +13 -0
- data/_layouts/program.html +201 -0
- data/_layouts/room.html +70 -0
- data/_layouts/speaker-overview.html +47 -0
- data/_layouts/speaker.html +111 -0
- data/_layouts/stream-overview.html +43 -0
- data/_layouts/talk-overview.html +112 -0
- data/_layouts/talk.html +123 -0
- data/_sass/bootstrap/_alert.scss +52 -0
- data/_sass/bootstrap/_badge.scss +54 -0
- data/_sass/bootstrap/_breadcrumb.scss +44 -0
- data/_sass/bootstrap/_button-group.scss +163 -0
- data/_sass/bootstrap/_buttons.scss +142 -0
- data/_sass/bootstrap/_card.scss +286 -0
- data/_sass/bootstrap/_carousel.scss +197 -0
- data/_sass/bootstrap/_close.scss +40 -0
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +524 -0
- data/_sass/bootstrap/_dropdown.scss +192 -0
- data/_sass/bootstrap/_forms.scss +347 -0
- data/_sass/bootstrap/_functions.scss +144 -0
- data/_sass/bootstrap/_grid.scss +73 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_input-group.scss +192 -0
- data/_sass/bootstrap/_jumbotron.scss +17 -0
- data/_sass/bootstrap/_list-group.scss +154 -0
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +47 -0
- data/_sass/bootstrap/_modal.scss +240 -0
- data/_sass/bootstrap/_nav.scss +123 -0
- data/_sass/bootstrap/_navbar.scss +324 -0
- data/_sass/bootstrap/_pagination.scss +74 -0
- data/_sass/bootstrap/_popover.scss +170 -0
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +47 -0
- data/_sass/bootstrap/_reboot.scss +484 -0
- data/_sass/bootstrap/_root.scss +20 -0
- data/_sass/bootstrap/_spinners.scss +56 -0
- data/_sass/bootstrap/_tables.scss +185 -0
- data/_sass/bootstrap/_toasts.scss +46 -0
- data/_sass/bootstrap/_tooltip.scss +115 -0
- data/_sass/bootstrap/_transitions.scss +20 -0
- data/_sass/bootstrap/_type.scss +125 -0
- data/_sass/bootstrap/_utilities.scss +18 -0
- data/_sass/bootstrap/_variables.scss +1142 -0
- data/_sass/bootstrap/bootstrap-grid.scss +29 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/bootstrap.scss +44 -0
- data/_sass/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
- data/_sass/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +76 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +20 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/mixins/_buttons.scss +110 -0
- data/_sass/bootstrap/mixins/_caret.scss +62 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_float.scss +14 -0
- data/_sass/bootstrap/mixins/_forms.scss +178 -0
- data/_sass/bootstrap/mixins/_gradients.scss +45 -0
- data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
- data/_sass/bootstrap/mixins/_grid.scss +69 -0
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +36 -0
- data/_sass/bootstrap/mixins/_list-group.scss +21 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
- data/_sass/bootstrap/mixins/_pagination.scss +22 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
- data/_sass/bootstrap/mixins/_size.scss +7 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/utilities/_display.scss +26 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +11 -0
- data/_sass/bootstrap/utilities/_interactions.scss +5 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/bootstrap/utilities/_text.scss +72 -0
- data/_sass/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/bootstrap/vendor/_rfs.scss +204 -0
- data/_sass/conference.scss +255 -0
- data/_sass/font-awesome/_animated.scss +20 -0
- data/_sass/font-awesome/_bordered-pulled.scss +20 -0
- data/_sass/font-awesome/_core.scss +21 -0
- data/_sass/font-awesome/_fixed-width.scss +6 -0
- data/_sass/font-awesome/_icons.scss +1462 -0
- data/_sass/font-awesome/_larger.scss +23 -0
- data/_sass/font-awesome/_list.scss +18 -0
- data/_sass/font-awesome/_mixins.scss +56 -0
- data/_sass/font-awesome/_rotated-flipped.scss +24 -0
- data/_sass/font-awesome/_screen-reader.scss +5 -0
- data/_sass/font-awesome/_shims.scss +2066 -0
- data/_sass/font-awesome/_stacked.scss +31 -0
- data/_sass/font-awesome/_variables.scss +1479 -0
- data/_sass/font-awesome/brands.scss +23 -0
- data/_sass/font-awesome/fontawesome.scss +16 -0
- data/_sass/font-awesome/regular.scss +23 -0
- data/_sass/font-awesome/scss/_animated.scss +20 -0
- data/_sass/font-awesome/scss/_bordered-pulled.scss +20 -0
- data/_sass/font-awesome/scss/_core.scss +21 -0
- data/_sass/font-awesome/scss/_fixed-width.scss +6 -0
- data/_sass/font-awesome/scss/_icons.scss +1441 -0
- data/_sass/font-awesome/scss/_larger.scss +23 -0
- data/_sass/font-awesome/scss/_list.scss +18 -0
- data/_sass/font-awesome/scss/_mixins.scss +56 -0
- data/_sass/font-awesome/scss/_rotated-flipped.scss +24 -0
- data/_sass/font-awesome/scss/_screen-reader.scss +5 -0
- data/_sass/font-awesome/scss/_shims.scss +2066 -0
- data/_sass/font-awesome/scss/_stacked.scss +31 -0
- data/_sass/font-awesome/scss/_variables.scss +1458 -0
- data/_sass/font-awesome/scss/brands.scss +23 -0
- data/_sass/font-awesome/scss/fontawesome.scss +16 -0
- data/_sass/font-awesome/scss/regular.scss +23 -0
- data/_sass/font-awesome/scss/solid.scss +24 -0
- data/_sass/font-awesome/scss/v4-shims.scss +6 -0
- data/_sass/font-awesome/solid.scss +24 -0
- data/_sass/font-awesome/v4-shims.scss +6 -0
- data/_sass/leaflet/leaflet-easybutton.scss +56 -0
- data/_sass/leaflet/leaflet-locatecontrol.scss +2 -0
- data/_sass/leaflet/leaflet.scss +640 -0
- data/assets/css/main.scss +6 -0
- data/assets/icons/live.svg +57 -0
- data/assets/js/config.json +3 -0
- data/assets/js/data.json +3 -0
- data/assets/js/main.js +4 -0
- data/assets/webfonts/fa-brands-400.eot +0 -0
- data/assets/webfonts/fa-brands-400.svg +3717 -0
- data/assets/webfonts/fa-brands-400.ttf +0 -0
- data/assets/webfonts/fa-brands-400.woff +0 -0
- data/assets/webfonts/fa-brands-400.woff2 +0 -0
- data/assets/webfonts/fa-regular-400.eot +0 -0
- data/assets/webfonts/fa-regular-400.svg +801 -0
- data/assets/webfonts/fa-regular-400.ttf +0 -0
- data/assets/webfonts/fa-regular-400.woff +0 -0
- data/assets/webfonts/fa-regular-400.woff2 +0 -0
- data/assets/webfonts/fa-solid-900.eot +0 -0
- data/assets/webfonts/fa-solid-900.svg +5028 -0
- data/assets/webfonts/fa-solid-900.ttf +0 -0
- data/assets/webfonts/fa-solid-900.woff +0 -0
- data/assets/webfonts/fa-solid-900.woff2 +0 -0
- metadata +296 -0
|
@@ -0,0 +1,640 @@
|
|
|
1
|
+
/* required styles */
|
|
2
|
+
|
|
3
|
+
.leaflet-pane,
|
|
4
|
+
.leaflet-tile,
|
|
5
|
+
.leaflet-marker-icon,
|
|
6
|
+
.leaflet-marker-shadow,
|
|
7
|
+
.leaflet-tile-container,
|
|
8
|
+
.leaflet-pane > svg,
|
|
9
|
+
.leaflet-pane > canvas,
|
|
10
|
+
.leaflet-zoom-box,
|
|
11
|
+
.leaflet-image-layer,
|
|
12
|
+
.leaflet-layer {
|
|
13
|
+
position: absolute;
|
|
14
|
+
left: 0;
|
|
15
|
+
top: 0;
|
|
16
|
+
}
|
|
17
|
+
.leaflet-container {
|
|
18
|
+
overflow: hidden;
|
|
19
|
+
}
|
|
20
|
+
.leaflet-tile,
|
|
21
|
+
.leaflet-marker-icon,
|
|
22
|
+
.leaflet-marker-shadow {
|
|
23
|
+
-webkit-user-select: none;
|
|
24
|
+
-moz-user-select: none;
|
|
25
|
+
user-select: none;
|
|
26
|
+
-webkit-user-drag: none;
|
|
27
|
+
}
|
|
28
|
+
/* Prevents IE11 from highlighting tiles in blue */
|
|
29
|
+
.leaflet-tile::selection {
|
|
30
|
+
background: transparent;
|
|
31
|
+
}
|
|
32
|
+
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
|
|
33
|
+
.leaflet-safari .leaflet-tile {
|
|
34
|
+
image-rendering: -webkit-optimize-contrast;
|
|
35
|
+
}
|
|
36
|
+
/* hack that prevents hw layers "stretching" when loading new tiles */
|
|
37
|
+
.leaflet-safari .leaflet-tile-container {
|
|
38
|
+
width: 1600px;
|
|
39
|
+
height: 1600px;
|
|
40
|
+
-webkit-transform-origin: 0 0;
|
|
41
|
+
}
|
|
42
|
+
.leaflet-marker-icon,
|
|
43
|
+
.leaflet-marker-shadow {
|
|
44
|
+
display: block;
|
|
45
|
+
}
|
|
46
|
+
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
|
|
47
|
+
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
|
|
48
|
+
.leaflet-container .leaflet-overlay-pane svg,
|
|
49
|
+
.leaflet-container .leaflet-marker-pane img,
|
|
50
|
+
.leaflet-container .leaflet-shadow-pane img,
|
|
51
|
+
.leaflet-container .leaflet-tile-pane img,
|
|
52
|
+
.leaflet-container img.leaflet-image-layer,
|
|
53
|
+
.leaflet-container .leaflet-tile {
|
|
54
|
+
max-width: none !important;
|
|
55
|
+
max-height: none !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.leaflet-container.leaflet-touch-zoom {
|
|
59
|
+
-ms-touch-action: pan-x pan-y;
|
|
60
|
+
touch-action: pan-x pan-y;
|
|
61
|
+
}
|
|
62
|
+
.leaflet-container.leaflet-touch-drag {
|
|
63
|
+
-ms-touch-action: pinch-zoom;
|
|
64
|
+
/* Fallback for FF which doesn't support pinch-zoom */
|
|
65
|
+
touch-action: none;
|
|
66
|
+
touch-action: pinch-zoom;
|
|
67
|
+
}
|
|
68
|
+
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
|
|
69
|
+
-ms-touch-action: none;
|
|
70
|
+
touch-action: none;
|
|
71
|
+
}
|
|
72
|
+
.leaflet-container {
|
|
73
|
+
-webkit-tap-highlight-color: transparent;
|
|
74
|
+
}
|
|
75
|
+
.leaflet-container a {
|
|
76
|
+
-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
|
|
77
|
+
}
|
|
78
|
+
.leaflet-tile {
|
|
79
|
+
filter: inherit;
|
|
80
|
+
visibility: hidden;
|
|
81
|
+
}
|
|
82
|
+
.leaflet-tile-loaded {
|
|
83
|
+
visibility: inherit;
|
|
84
|
+
}
|
|
85
|
+
.leaflet-zoom-box {
|
|
86
|
+
width: 0;
|
|
87
|
+
height: 0;
|
|
88
|
+
-moz-box-sizing: border-box;
|
|
89
|
+
box-sizing: border-box;
|
|
90
|
+
z-index: 800;
|
|
91
|
+
}
|
|
92
|
+
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
|
|
93
|
+
.leaflet-overlay-pane svg {
|
|
94
|
+
-moz-user-select: none;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.leaflet-pane { z-index: 400; }
|
|
98
|
+
|
|
99
|
+
.leaflet-tile-pane { z-index: 200; }
|
|
100
|
+
.leaflet-overlay-pane { z-index: 400; }
|
|
101
|
+
.leaflet-shadow-pane { z-index: 500; }
|
|
102
|
+
.leaflet-marker-pane { z-index: 600; }
|
|
103
|
+
.leaflet-tooltip-pane { z-index: 650; }
|
|
104
|
+
.leaflet-popup-pane { z-index: 700; }
|
|
105
|
+
|
|
106
|
+
.leaflet-map-pane canvas { z-index: 100; }
|
|
107
|
+
.leaflet-map-pane svg { z-index: 200; }
|
|
108
|
+
|
|
109
|
+
.leaflet-vml-shape {
|
|
110
|
+
width: 1px;
|
|
111
|
+
height: 1px;
|
|
112
|
+
}
|
|
113
|
+
.lvml {
|
|
114
|
+
behavior: url(#default#VML);
|
|
115
|
+
display: inline-block;
|
|
116
|
+
position: absolute;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
/* control positioning */
|
|
121
|
+
|
|
122
|
+
.leaflet-control {
|
|
123
|
+
position: relative;
|
|
124
|
+
z-index: 800;
|
|
125
|
+
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
|
126
|
+
pointer-events: auto;
|
|
127
|
+
}
|
|
128
|
+
.leaflet-top,
|
|
129
|
+
.leaflet-bottom {
|
|
130
|
+
position: absolute;
|
|
131
|
+
z-index: 1000;
|
|
132
|
+
pointer-events: none;
|
|
133
|
+
}
|
|
134
|
+
.leaflet-top {
|
|
135
|
+
top: 0;
|
|
136
|
+
}
|
|
137
|
+
.leaflet-right {
|
|
138
|
+
right: 0;
|
|
139
|
+
}
|
|
140
|
+
.leaflet-bottom {
|
|
141
|
+
bottom: 0;
|
|
142
|
+
}
|
|
143
|
+
.leaflet-left {
|
|
144
|
+
left: 0;
|
|
145
|
+
}
|
|
146
|
+
.leaflet-control {
|
|
147
|
+
float: left;
|
|
148
|
+
clear: both;
|
|
149
|
+
}
|
|
150
|
+
.leaflet-right .leaflet-control {
|
|
151
|
+
float: right;
|
|
152
|
+
}
|
|
153
|
+
.leaflet-top .leaflet-control {
|
|
154
|
+
margin-top: 10px;
|
|
155
|
+
}
|
|
156
|
+
.leaflet-bottom .leaflet-control {
|
|
157
|
+
margin-bottom: 10px;
|
|
158
|
+
}
|
|
159
|
+
.leaflet-left .leaflet-control {
|
|
160
|
+
margin-left: 10px;
|
|
161
|
+
}
|
|
162
|
+
.leaflet-right .leaflet-control {
|
|
163
|
+
margin-right: 10px;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
/* zoom and fade animations */
|
|
168
|
+
|
|
169
|
+
.leaflet-fade-anim .leaflet-tile {
|
|
170
|
+
will-change: opacity;
|
|
171
|
+
}
|
|
172
|
+
.leaflet-fade-anim .leaflet-popup {
|
|
173
|
+
opacity: 0;
|
|
174
|
+
-webkit-transition: opacity 0.2s linear;
|
|
175
|
+
-moz-transition: opacity 0.2s linear;
|
|
176
|
+
transition: opacity 0.2s linear;
|
|
177
|
+
}
|
|
178
|
+
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
|
|
179
|
+
opacity: 1;
|
|
180
|
+
}
|
|
181
|
+
.leaflet-zoom-animated {
|
|
182
|
+
-webkit-transform-origin: 0 0;
|
|
183
|
+
-ms-transform-origin: 0 0;
|
|
184
|
+
transform-origin: 0 0;
|
|
185
|
+
}
|
|
186
|
+
.leaflet-zoom-anim .leaflet-zoom-animated {
|
|
187
|
+
will-change: transform;
|
|
188
|
+
}
|
|
189
|
+
.leaflet-zoom-anim .leaflet-zoom-animated {
|
|
190
|
+
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
191
|
+
-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
192
|
+
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
193
|
+
}
|
|
194
|
+
.leaflet-zoom-anim .leaflet-tile,
|
|
195
|
+
.leaflet-pan-anim .leaflet-tile {
|
|
196
|
+
-webkit-transition: none;
|
|
197
|
+
-moz-transition: none;
|
|
198
|
+
transition: none;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.leaflet-zoom-anim .leaflet-zoom-hide {
|
|
202
|
+
visibility: hidden;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
/* cursors */
|
|
207
|
+
|
|
208
|
+
.leaflet-interactive {
|
|
209
|
+
cursor: pointer;
|
|
210
|
+
}
|
|
211
|
+
.leaflet-grab {
|
|
212
|
+
cursor: -webkit-grab;
|
|
213
|
+
cursor: -moz-grab;
|
|
214
|
+
cursor: grab;
|
|
215
|
+
}
|
|
216
|
+
.leaflet-crosshair,
|
|
217
|
+
.leaflet-crosshair .leaflet-interactive {
|
|
218
|
+
cursor: crosshair;
|
|
219
|
+
}
|
|
220
|
+
.leaflet-popup-pane,
|
|
221
|
+
.leaflet-control {
|
|
222
|
+
cursor: auto;
|
|
223
|
+
}
|
|
224
|
+
.leaflet-dragging .leaflet-grab,
|
|
225
|
+
.leaflet-dragging .leaflet-grab .leaflet-interactive,
|
|
226
|
+
.leaflet-dragging .leaflet-marker-draggable {
|
|
227
|
+
cursor: move;
|
|
228
|
+
cursor: -webkit-grabbing;
|
|
229
|
+
cursor: -moz-grabbing;
|
|
230
|
+
cursor: grabbing;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
/* marker & overlays interactivity */
|
|
234
|
+
.leaflet-marker-icon,
|
|
235
|
+
.leaflet-marker-shadow,
|
|
236
|
+
.leaflet-image-layer,
|
|
237
|
+
.leaflet-pane > svg path,
|
|
238
|
+
.leaflet-tile-container {
|
|
239
|
+
pointer-events: none;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.leaflet-marker-icon.leaflet-interactive,
|
|
243
|
+
.leaflet-image-layer.leaflet-interactive,
|
|
244
|
+
.leaflet-pane > svg path.leaflet-interactive,
|
|
245
|
+
svg.leaflet-image-layer.leaflet-interactive path {
|
|
246
|
+
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
|
247
|
+
pointer-events: auto;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
/* visual tweaks */
|
|
251
|
+
|
|
252
|
+
.leaflet-container {
|
|
253
|
+
background: #ddd;
|
|
254
|
+
outline: 0;
|
|
255
|
+
}
|
|
256
|
+
.leaflet-container a {
|
|
257
|
+
color: #0078A8;
|
|
258
|
+
}
|
|
259
|
+
.leaflet-container a.leaflet-active {
|
|
260
|
+
outline: 2px solid orange;
|
|
261
|
+
}
|
|
262
|
+
.leaflet-zoom-box {
|
|
263
|
+
border: 2px dotted #38f;
|
|
264
|
+
background: rgba(255,255,255,0.5);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
/* general typography */
|
|
269
|
+
.leaflet-container {
|
|
270
|
+
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
/* general toolbar styles */
|
|
275
|
+
|
|
276
|
+
.leaflet-bar {
|
|
277
|
+
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
|
|
278
|
+
border-radius: 4px;
|
|
279
|
+
}
|
|
280
|
+
.leaflet-bar a,
|
|
281
|
+
.leaflet-bar a:hover {
|
|
282
|
+
background-color: #fff;
|
|
283
|
+
border-bottom: 1px solid #ccc;
|
|
284
|
+
width: 26px;
|
|
285
|
+
height: 26px;
|
|
286
|
+
line-height: 26px;
|
|
287
|
+
display: block;
|
|
288
|
+
text-align: center;
|
|
289
|
+
text-decoration: none;
|
|
290
|
+
color: black;
|
|
291
|
+
}
|
|
292
|
+
.leaflet-bar a,
|
|
293
|
+
.leaflet-control-layers-toggle {
|
|
294
|
+
background-position: 50% 50%;
|
|
295
|
+
background-repeat: no-repeat;
|
|
296
|
+
display: block;
|
|
297
|
+
}
|
|
298
|
+
.leaflet-bar a:hover {
|
|
299
|
+
background-color: #f4f4f4;
|
|
300
|
+
}
|
|
301
|
+
.leaflet-bar a:first-child {
|
|
302
|
+
border-top-left-radius: 4px;
|
|
303
|
+
border-top-right-radius: 4px;
|
|
304
|
+
}
|
|
305
|
+
.leaflet-bar a:last-child {
|
|
306
|
+
border-bottom-left-radius: 4px;
|
|
307
|
+
border-bottom-right-radius: 4px;
|
|
308
|
+
border-bottom: none;
|
|
309
|
+
}
|
|
310
|
+
.leaflet-bar a.leaflet-disabled {
|
|
311
|
+
cursor: default;
|
|
312
|
+
background-color: #f4f4f4;
|
|
313
|
+
color: #bbb;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.leaflet-touch .leaflet-bar a {
|
|
317
|
+
width: 30px;
|
|
318
|
+
height: 30px;
|
|
319
|
+
line-height: 30px;
|
|
320
|
+
}
|
|
321
|
+
.leaflet-touch .leaflet-bar a:first-child {
|
|
322
|
+
border-top-left-radius: 2px;
|
|
323
|
+
border-top-right-radius: 2px;
|
|
324
|
+
}
|
|
325
|
+
.leaflet-touch .leaflet-bar a:last-child {
|
|
326
|
+
border-bottom-left-radius: 2px;
|
|
327
|
+
border-bottom-right-radius: 2px;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
/* zoom control */
|
|
331
|
+
|
|
332
|
+
.leaflet-control-zoom-in,
|
|
333
|
+
.leaflet-control-zoom-out {
|
|
334
|
+
font: bold 18px 'Lucida Console', Monaco, monospace;
|
|
335
|
+
text-indent: 1px;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
|
|
339
|
+
font-size: 22px;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
/* layers control */
|
|
344
|
+
|
|
345
|
+
.leaflet-control-layers {
|
|
346
|
+
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
|
|
347
|
+
background: #fff;
|
|
348
|
+
border-radius: 5px;
|
|
349
|
+
}
|
|
350
|
+
.leaflet-control-layers-toggle {
|
|
351
|
+
background-image: url(images/layers.png);
|
|
352
|
+
width: 36px;
|
|
353
|
+
height: 36px;
|
|
354
|
+
}
|
|
355
|
+
.leaflet-retina .leaflet-control-layers-toggle {
|
|
356
|
+
background-image: url(images/layers-2x.png);
|
|
357
|
+
background-size: 26px 26px;
|
|
358
|
+
}
|
|
359
|
+
.leaflet-touch .leaflet-control-layers-toggle {
|
|
360
|
+
width: 44px;
|
|
361
|
+
height: 44px;
|
|
362
|
+
}
|
|
363
|
+
.leaflet-control-layers .leaflet-control-layers-list,
|
|
364
|
+
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
|
|
365
|
+
display: none;
|
|
366
|
+
}
|
|
367
|
+
.leaflet-control-layers-expanded .leaflet-control-layers-list {
|
|
368
|
+
display: block;
|
|
369
|
+
position: relative;
|
|
370
|
+
}
|
|
371
|
+
.leaflet-control-layers-expanded {
|
|
372
|
+
padding: 6px 10px 6px 6px;
|
|
373
|
+
color: #333;
|
|
374
|
+
background: #fff;
|
|
375
|
+
}
|
|
376
|
+
.leaflet-control-layers-scrollbar {
|
|
377
|
+
overflow-y: scroll;
|
|
378
|
+
overflow-x: hidden;
|
|
379
|
+
padding-right: 5px;
|
|
380
|
+
}
|
|
381
|
+
.leaflet-control-layers-selector {
|
|
382
|
+
margin-top: 2px;
|
|
383
|
+
position: relative;
|
|
384
|
+
top: 1px;
|
|
385
|
+
}
|
|
386
|
+
.leaflet-control-layers label {
|
|
387
|
+
display: block;
|
|
388
|
+
}
|
|
389
|
+
.leaflet-control-layers-separator {
|
|
390
|
+
height: 0;
|
|
391
|
+
border-top: 1px solid #ddd;
|
|
392
|
+
margin: 5px -10px 5px -6px;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
/* Default icon URLs */
|
|
396
|
+
.leaflet-default-icon-path {
|
|
397
|
+
background-image: url(images/marker-icon.png);
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
/* attribution and scale controls */
|
|
402
|
+
|
|
403
|
+
.leaflet-container .leaflet-control-attribution {
|
|
404
|
+
background: #fff;
|
|
405
|
+
background: rgba(255, 255, 255, 0.7);
|
|
406
|
+
margin: 0;
|
|
407
|
+
}
|
|
408
|
+
.leaflet-control-attribution,
|
|
409
|
+
.leaflet-control-scale-line {
|
|
410
|
+
padding: 0 5px;
|
|
411
|
+
color: #333;
|
|
412
|
+
}
|
|
413
|
+
.leaflet-control-attribution a {
|
|
414
|
+
text-decoration: none;
|
|
415
|
+
}
|
|
416
|
+
.leaflet-control-attribution a:hover {
|
|
417
|
+
text-decoration: underline;
|
|
418
|
+
}
|
|
419
|
+
.leaflet-container .leaflet-control-attribution,
|
|
420
|
+
.leaflet-container .leaflet-control-scale {
|
|
421
|
+
font-size: 11px;
|
|
422
|
+
}
|
|
423
|
+
.leaflet-left .leaflet-control-scale {
|
|
424
|
+
margin-left: 5px;
|
|
425
|
+
}
|
|
426
|
+
.leaflet-bottom .leaflet-control-scale {
|
|
427
|
+
margin-bottom: 5px;
|
|
428
|
+
}
|
|
429
|
+
.leaflet-control-scale-line {
|
|
430
|
+
border: 2px solid #777;
|
|
431
|
+
border-top: none;
|
|
432
|
+
line-height: 1.1;
|
|
433
|
+
padding: 2px 5px 1px;
|
|
434
|
+
font-size: 11px;
|
|
435
|
+
white-space: nowrap;
|
|
436
|
+
overflow: hidden;
|
|
437
|
+
-moz-box-sizing: border-box;
|
|
438
|
+
box-sizing: border-box;
|
|
439
|
+
|
|
440
|
+
background: #fff;
|
|
441
|
+
background: rgba(255, 255, 255, 0.5);
|
|
442
|
+
}
|
|
443
|
+
.leaflet-control-scale-line:not(:first-child) {
|
|
444
|
+
border-top: 2px solid #777;
|
|
445
|
+
border-bottom: none;
|
|
446
|
+
margin-top: -2px;
|
|
447
|
+
}
|
|
448
|
+
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
|
|
449
|
+
border-bottom: 2px solid #777;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.leaflet-touch .leaflet-control-attribution,
|
|
453
|
+
.leaflet-touch .leaflet-control-layers,
|
|
454
|
+
.leaflet-touch .leaflet-bar {
|
|
455
|
+
box-shadow: none;
|
|
456
|
+
}
|
|
457
|
+
.leaflet-touch .leaflet-control-layers,
|
|
458
|
+
.leaflet-touch .leaflet-bar {
|
|
459
|
+
border: 2px solid rgba(0,0,0,0.2);
|
|
460
|
+
background-clip: padding-box;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
/* popup */
|
|
465
|
+
|
|
466
|
+
.leaflet-popup {
|
|
467
|
+
position: absolute;
|
|
468
|
+
text-align: center;
|
|
469
|
+
margin-bottom: 20px;
|
|
470
|
+
}
|
|
471
|
+
.leaflet-popup-content-wrapper {
|
|
472
|
+
padding: 1px;
|
|
473
|
+
text-align: left;
|
|
474
|
+
border-radius: 12px;
|
|
475
|
+
}
|
|
476
|
+
.leaflet-popup-content {
|
|
477
|
+
margin: 13px 19px;
|
|
478
|
+
line-height: 1.4;
|
|
479
|
+
}
|
|
480
|
+
.leaflet-popup-content p {
|
|
481
|
+
margin: 18px 0;
|
|
482
|
+
}
|
|
483
|
+
.leaflet-popup-tip-container {
|
|
484
|
+
width: 40px;
|
|
485
|
+
height: 20px;
|
|
486
|
+
position: absolute;
|
|
487
|
+
left: 50%;
|
|
488
|
+
margin-left: -20px;
|
|
489
|
+
overflow: hidden;
|
|
490
|
+
pointer-events: none;
|
|
491
|
+
}
|
|
492
|
+
.leaflet-popup-tip {
|
|
493
|
+
width: 17px;
|
|
494
|
+
height: 17px;
|
|
495
|
+
padding: 1px;
|
|
496
|
+
|
|
497
|
+
margin: -10px auto 0;
|
|
498
|
+
|
|
499
|
+
-webkit-transform: rotate(45deg);
|
|
500
|
+
-moz-transform: rotate(45deg);
|
|
501
|
+
-ms-transform: rotate(45deg);
|
|
502
|
+
transform: rotate(45deg);
|
|
503
|
+
}
|
|
504
|
+
.leaflet-popup-content-wrapper,
|
|
505
|
+
.leaflet-popup-tip {
|
|
506
|
+
background: white;
|
|
507
|
+
color: #333;
|
|
508
|
+
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
|
|
509
|
+
}
|
|
510
|
+
.leaflet-container a.leaflet-popup-close-button {
|
|
511
|
+
position: absolute;
|
|
512
|
+
top: 0;
|
|
513
|
+
right: 0;
|
|
514
|
+
padding: 4px 4px 0 0;
|
|
515
|
+
border: none;
|
|
516
|
+
text-align: center;
|
|
517
|
+
width: 18px;
|
|
518
|
+
height: 14px;
|
|
519
|
+
font: 16px/14px Tahoma, Verdana, sans-serif;
|
|
520
|
+
color: #c3c3c3;
|
|
521
|
+
text-decoration: none;
|
|
522
|
+
font-weight: bold;
|
|
523
|
+
background: transparent;
|
|
524
|
+
}
|
|
525
|
+
.leaflet-container a.leaflet-popup-close-button:hover {
|
|
526
|
+
color: #999;
|
|
527
|
+
}
|
|
528
|
+
.leaflet-popup-scrolled {
|
|
529
|
+
overflow: auto;
|
|
530
|
+
border-bottom: 1px solid #ddd;
|
|
531
|
+
border-top: 1px solid #ddd;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.leaflet-oldie .leaflet-popup-content-wrapper {
|
|
535
|
+
-ms-zoom: 1;
|
|
536
|
+
}
|
|
537
|
+
.leaflet-oldie .leaflet-popup-tip {
|
|
538
|
+
width: 24px;
|
|
539
|
+
margin: 0 auto;
|
|
540
|
+
|
|
541
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
|
|
542
|
+
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
|
|
543
|
+
}
|
|
544
|
+
.leaflet-oldie .leaflet-popup-tip-container {
|
|
545
|
+
margin-top: -1px;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.leaflet-oldie .leaflet-control-zoom,
|
|
549
|
+
.leaflet-oldie .leaflet-control-layers,
|
|
550
|
+
.leaflet-oldie .leaflet-popup-content-wrapper,
|
|
551
|
+
.leaflet-oldie .leaflet-popup-tip {
|
|
552
|
+
border: 1px solid #999;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
/* div icon */
|
|
557
|
+
|
|
558
|
+
.leaflet-div-icon {
|
|
559
|
+
background: #fff;
|
|
560
|
+
border: 1px solid #666;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
/* Tooltip */
|
|
565
|
+
/* Base styles for the element that has a tooltip */
|
|
566
|
+
.leaflet-tooltip {
|
|
567
|
+
position: absolute;
|
|
568
|
+
padding: 6px;
|
|
569
|
+
background-color: #fff;
|
|
570
|
+
border: 1px solid #fff;
|
|
571
|
+
border-radius: 3px;
|
|
572
|
+
color: #222;
|
|
573
|
+
white-space: nowrap;
|
|
574
|
+
-webkit-user-select: none;
|
|
575
|
+
-moz-user-select: none;
|
|
576
|
+
-ms-user-select: none;
|
|
577
|
+
user-select: none;
|
|
578
|
+
pointer-events: none;
|
|
579
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.4);
|
|
580
|
+
}
|
|
581
|
+
.leaflet-tooltip.leaflet-clickable {
|
|
582
|
+
cursor: pointer;
|
|
583
|
+
pointer-events: auto;
|
|
584
|
+
}
|
|
585
|
+
.leaflet-tooltip-top:before,
|
|
586
|
+
.leaflet-tooltip-bottom:before,
|
|
587
|
+
.leaflet-tooltip-left:before,
|
|
588
|
+
.leaflet-tooltip-right:before {
|
|
589
|
+
position: absolute;
|
|
590
|
+
pointer-events: none;
|
|
591
|
+
border: 6px solid transparent;
|
|
592
|
+
background: transparent;
|
|
593
|
+
content: "";
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
/* Directions */
|
|
597
|
+
|
|
598
|
+
.leaflet-tooltip-bottom {
|
|
599
|
+
margin-top: 6px;
|
|
600
|
+
}
|
|
601
|
+
.leaflet-tooltip-top {
|
|
602
|
+
margin-top: -6px;
|
|
603
|
+
}
|
|
604
|
+
.leaflet-tooltip-bottom:before,
|
|
605
|
+
.leaflet-tooltip-top:before {
|
|
606
|
+
left: 50%;
|
|
607
|
+
margin-left: -6px;
|
|
608
|
+
}
|
|
609
|
+
.leaflet-tooltip-top:before {
|
|
610
|
+
bottom: 0;
|
|
611
|
+
margin-bottom: -12px;
|
|
612
|
+
border-top-color: #fff;
|
|
613
|
+
}
|
|
614
|
+
.leaflet-tooltip-bottom:before {
|
|
615
|
+
top: 0;
|
|
616
|
+
margin-top: -12px;
|
|
617
|
+
margin-left: -6px;
|
|
618
|
+
border-bottom-color: #fff;
|
|
619
|
+
}
|
|
620
|
+
.leaflet-tooltip-left {
|
|
621
|
+
margin-left: -6px;
|
|
622
|
+
}
|
|
623
|
+
.leaflet-tooltip-right {
|
|
624
|
+
margin-left: 6px;
|
|
625
|
+
}
|
|
626
|
+
.leaflet-tooltip-left:before,
|
|
627
|
+
.leaflet-tooltip-right:before {
|
|
628
|
+
top: 50%;
|
|
629
|
+
margin-top: -6px;
|
|
630
|
+
}
|
|
631
|
+
.leaflet-tooltip-left:before {
|
|
632
|
+
right: 0;
|
|
633
|
+
margin-right: -12px;
|
|
634
|
+
border-left-color: #fff;
|
|
635
|
+
}
|
|
636
|
+
.leaflet-tooltip-right:before {
|
|
637
|
+
left: 0;
|
|
638
|
+
margin-left: -12px;
|
|
639
|
+
border-right-color: #fff;
|
|
640
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!--
|
|
3
|
+
Original source of icon:
|
|
4
|
+
Font Awesome Free 5.15.1 by @fontawesome
|
|
5
|
+
https://fontawesome.com/license/free
|
|
6
|
+
CC BY 4.0 https://creativecommons.org/licenses/by/4.0/
|
|
7
|
+
|
|
8
|
+
Modified as following:
|
|
9
|
+
- Original path split from one into three separate paths (for each of the visual distinctive shapes)
|
|
10
|
+
- Animation of each path
|
|
11
|
+
- Removed attributes from SVG element to pass W3 validator
|
|
12
|
+
-->
|
|
13
|
+
<svg
|
|
14
|
+
focusable="false"
|
|
15
|
+
role="img"
|
|
16
|
+
viewBox="0 0 448 512"
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
18
|
+
<style>
|
|
19
|
+
@keyframes animation-dot {
|
|
20
|
+
6% { opacity: 0; }
|
|
21
|
+
8% { opacity: 1; }
|
|
22
|
+
100% { opacity: 1; }
|
|
23
|
+
}
|
|
24
|
+
@keyframes animation-arc-small {
|
|
25
|
+
8% { opacity: 0; }
|
|
26
|
+
10% { opacity: 1; }
|
|
27
|
+
100% { opacity: 1; }
|
|
28
|
+
}
|
|
29
|
+
@keyframes animation-arc-large {
|
|
30
|
+
10% { opacity: 0; }
|
|
31
|
+
12% { opacity: 1; }
|
|
32
|
+
100% { opacity: 1; }
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
#li-dot {
|
|
36
|
+
animation: animation-dot 8s ease infinite;
|
|
37
|
+
}
|
|
38
|
+
#li-arc-small {
|
|
39
|
+
animation: animation-arc-small 8s ease infinite;
|
|
40
|
+
}
|
|
41
|
+
#li-arc-large {
|
|
42
|
+
animation: animation-arc-large 8s ease infinite;
|
|
43
|
+
}
|
|
44
|
+
</style>
|
|
45
|
+
<path
|
|
46
|
+
id="li-dot"
|
|
47
|
+
fill="white"
|
|
48
|
+
d="M 128.081,415.959 C 128.081,451.328 99.409,480 64.04,480 28.671,480 0,451.328 0,415.959 0,380.59 28.672,351.918 64.041,351.918 c 35.369,0 64.04,28.673 64.04,64.041 z"></path>
|
|
49
|
+
<path
|
|
50
|
+
id="li-arc-small"
|
|
51
|
+
fill="white"
|
|
52
|
+
d="M 303.741,463.209 C 295.387,308.609 171.556,184.622 16.791,176.259 7.656,175.765 0,183.105 0,192.253 v 48.069 c 0,8.415 6.49,15.472 14.887,16.018 111.832,7.284 201.473,96.702 208.772,208.772 0.547,8.397 7.604,14.887 16.018,14.887 h 48.069 c 9.149,10e-4 16.489,-7.655 15.995,-16.79 z"></path>
|
|
53
|
+
<path
|
|
54
|
+
id="li-arc-large"
|
|
55
|
+
fill="white"
|
|
56
|
+
d="M 447.99,463.497 C 439.596,229.677 251.465,40.445 16.503,32.01 7.473,31.686 0,38.981 0,48.016 v 48.068 c 0,8.625 6.835,15.645 15.453,15.999 191.179,7.839 344.627,161.316 352.465,352.465 0.353,8.618 7.373,15.453 15.999,15.453 h 48.068 c 9.034,-10e-4 16.329,-7.474 16.005,-16.504 z"></path>
|
|
57
|
+
</svg>
|
data/assets/js/data.json
ADDED
data/assets/js/main.js
ADDED
|
Binary file
|