jekyll-theme-conference 4.0.0 → 4.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.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/_sass/bootstrap/scss/_accordion.scss +153 -0
  4. data/_sass/bootstrap/scss/_alert.scss +68 -0
  5. data/_sass/bootstrap/scss/_badge.scss +38 -0
  6. data/_sass/bootstrap/scss/_breadcrumb.scss +40 -0
  7. data/_sass/bootstrap/scss/_button-group.scss +147 -0
  8. data/_sass/bootstrap/scss/_buttons.scss +216 -0
  9. data/_sass/bootstrap/scss/_card.scss +238 -0
  10. data/_sass/bootstrap/scss/_carousel.scss +226 -0
  11. data/_sass/bootstrap/scss/_close.scss +66 -0
  12. data/_sass/bootstrap/scss/_containers.scss +41 -0
  13. data/_sass/bootstrap/scss/_dropdown.scss +250 -0
  14. data/_sass/bootstrap/scss/_forms.scss +9 -0
  15. data/_sass/bootstrap/scss/_functions.scss +302 -0
  16. data/_sass/bootstrap/scss/_grid.scss +39 -0
  17. data/_sass/bootstrap/scss/_helpers.scss +12 -0
  18. data/_sass/bootstrap/scss/_images.scss +42 -0
  19. data/_sass/bootstrap/scss/_list-group.scss +199 -0
  20. data/_sass/bootstrap/scss/_maps.scss +174 -0
  21. data/_sass/bootstrap/scss/_mixins.scss +42 -0
  22. data/_sass/bootstrap/scss/_modal.scss +240 -0
  23. data/_sass/bootstrap/scss/_nav.scss +197 -0
  24. data/_sass/bootstrap/scss/_navbar.scss +289 -0
  25. data/_sass/bootstrap/scss/_offcanvas.scss +147 -0
  26. data/_sass/bootstrap/scss/_pagination.scss +109 -0
  27. data/_sass/bootstrap/scss/_placeholders.scss +51 -0
  28. data/_sass/bootstrap/scss/_popover.scss +196 -0
  29. data/_sass/bootstrap/scss/_progress.scss +68 -0
  30. data/_sass/bootstrap/scss/_reboot.scss +617 -0
  31. data/_sass/bootstrap/scss/_root.scss +187 -0
  32. data/_sass/bootstrap/scss/_spinners.scss +86 -0
  33. data/_sass/bootstrap/scss/_tables.scss +171 -0
  34. data/_sass/bootstrap/scss/_toasts.scss +73 -0
  35. data/_sass/bootstrap/scss/_tooltip.scss +119 -0
  36. data/_sass/bootstrap/scss/_transitions.scss +27 -0
  37. data/_sass/bootstrap/scss/_type.scss +106 -0
  38. data/_sass/bootstrap/scss/_utilities.scss +806 -0
  39. data/_sass/bootstrap/scss/_variables-dark.scss +102 -0
  40. data/_sass/bootstrap/scss/_variables.scss +1753 -0
  41. data/_sass/bootstrap/scss/bootstrap-grid.scss +62 -0
  42. data/_sass/bootstrap/scss/bootstrap-reboot.scss +10 -0
  43. data/_sass/bootstrap/scss/bootstrap-utilities.scss +19 -0
  44. data/_sass/bootstrap/scss/bootstrap.scss +52 -0
  45. data/_sass/bootstrap/scss/forms/_floating-labels.scss +97 -0
  46. data/_sass/bootstrap/scss/forms/_form-check.scss +189 -0
  47. data/_sass/bootstrap/scss/forms/_form-control.scss +214 -0
  48. data/_sass/bootstrap/scss/forms/_form-range.scss +91 -0
  49. data/_sass/bootstrap/scss/forms/_form-select.scss +80 -0
  50. data/_sass/bootstrap/scss/forms/_form-text.scss +11 -0
  51. data/_sass/bootstrap/scss/forms/_input-group.scss +132 -0
  52. data/_sass/bootstrap/scss/forms/_labels.scss +36 -0
  53. data/_sass/bootstrap/scss/forms/_validation.scss +12 -0
  54. data/_sass/bootstrap/scss/helpers/_clearfix.scss +3 -0
  55. data/_sass/bootstrap/scss/helpers/_color-bg.scss +7 -0
  56. data/_sass/bootstrap/scss/helpers/_colored-links.scss +30 -0
  57. data/_sass/bootstrap/scss/helpers/_focus-ring.scss +5 -0
  58. data/_sass/bootstrap/scss/helpers/_icon-link.scss +25 -0
  59. data/_sass/bootstrap/scss/helpers/_position.scss +36 -0
  60. data/_sass/bootstrap/scss/helpers/_ratio.scss +26 -0
  61. data/_sass/bootstrap/scss/helpers/_stacks.scss +15 -0
  62. data/_sass/bootstrap/scss/helpers/_stretched-link.scss +15 -0
  63. data/_sass/bootstrap/scss/helpers/_text-truncation.scss +7 -0
  64. data/_sass/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
  65. data/_sass/bootstrap/scss/helpers/_vr.scss +8 -0
  66. data/_sass/bootstrap/scss/mixins/_alert.scss +18 -0
  67. data/_sass/bootstrap/scss/mixins/_backdrop.scss +14 -0
  68. data/_sass/bootstrap/scss/mixins/_banner.scss +7 -0
  69. data/_sass/bootstrap/scss/mixins/_border-radius.scss +78 -0
  70. data/_sass/bootstrap/scss/mixins/_box-shadow.scss +24 -0
  71. data/_sass/bootstrap/scss/mixins/_breakpoints.scss +127 -0
  72. data/_sass/bootstrap/scss/mixins/_buttons.scss +70 -0
  73. data/_sass/bootstrap/scss/mixins/_caret.scss +69 -0
  74. data/_sass/bootstrap/scss/mixins/_clearfix.scss +9 -0
  75. data/_sass/bootstrap/scss/mixins/_color-mode.scss +21 -0
  76. data/_sass/bootstrap/scss/mixins/_color-scheme.scss +7 -0
  77. data/_sass/bootstrap/scss/mixins/_container.scss +11 -0
  78. data/_sass/bootstrap/scss/mixins/_deprecate.scss +10 -0
  79. data/_sass/bootstrap/scss/mixins/_forms.scss +163 -0
  80. data/_sass/bootstrap/scss/mixins/_gradients.scss +47 -0
  81. data/_sass/bootstrap/scss/mixins/_grid.scss +151 -0
  82. data/_sass/bootstrap/scss/mixins/_image.scss +16 -0
  83. data/_sass/bootstrap/scss/mixins/_list-group.scss +26 -0
  84. data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
  85. data/_sass/bootstrap/scss/mixins/_pagination.scss +10 -0
  86. data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
  87. data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
  88. data/_sass/bootstrap/scss/mixins/_table-variants.scss +24 -0
  89. data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  90. data/_sass/bootstrap/scss/mixins/_transition.scss +26 -0
  91. data/_sass/bootstrap/scss/mixins/_utilities.scss +97 -0
  92. data/_sass/bootstrap/scss/mixins/_visually-hidden.scss +38 -0
  93. data/_sass/bootstrap/scss/utilities/_api.scss +47 -0
  94. data/_sass/bootstrap/scss/vendor/_rfs.scss +348 -0
  95. data/_sass/bootstrap-icons/font/bootstrap-icons.css +2106 -0
  96. data/_sass/bootstrap-icons/font/bootstrap-icons.min.css +5 -0
  97. data/_sass/bootstrap-icons/font/bootstrap-icons.scss +2118 -0
  98. data/_sass/bootstrap.scss +45 -0
  99. data/_sass/conference.scss +19 -0
  100. data/_sass/leaflet/dist/leaflet.css +661 -0
  101. data/_sass/leaflet-easybutton/src/easy-button.css +56 -0
  102. data/_sass/leaflet.locatecontrol/dist/L.Control.Locate.css +61 -0
  103. data/_sass/theme.scss +214 -0
  104. metadata +102 -1
@@ -0,0 +1,45 @@
1
+ /**
2
+ * Bootstrap Entry Point
3
+ */
4
+
5
+ // Include functions first (so you can manipulate colors, SVGs, calc, etc)
6
+ @import "bootstrap/scss/functions";
7
+
8
+ // Include any default variable overrides here
9
+ @import "bootstrap-variables";
10
+
11
+ // Include remainder of required Bootstrap stylesheets (including any separate color mode stylesheets)
12
+ @import "bootstrap/scss/variables";
13
+ @import "bootstrap/scss/variables-dark";
14
+
15
+ // Include any default map overrides here
16
+
17
+ // Include remainder of required parts
18
+ @import "bootstrap/scss/maps";
19
+ @import "bootstrap/scss/mixins";
20
+ @import "bootstrap/scss/root";
21
+
22
+ // Include any other optional stylesheet partials as desired; list below is not inclusive of all available stylesheets
23
+ @import "bootstrap/scss/utilities";
24
+ @import "bootstrap/scss/reboot";
25
+ @import "bootstrap/scss/type";
26
+ @import "bootstrap/scss/images";
27
+ @import "bootstrap/scss/containers";
28
+ @import "bootstrap/scss/grid";
29
+ @import "bootstrap/scss/helpers";
30
+ @import "bootstrap/scss/alert";
31
+ @import "bootstrap/scss/badge";
32
+ @import "bootstrap/scss/button-group";
33
+ @import "bootstrap/scss/buttons";
34
+ @import "bootstrap/scss/close";
35
+ @import "bootstrap/scss/dropdown";
36
+ @import "bootstrap/scss/forms";
37
+ @import "bootstrap/scss/list-group";
38
+ @import "bootstrap/scss/modal";
39
+ @import "bootstrap/scss/nav";
40
+ @import "bootstrap/scss/navbar";
41
+ @import "bootstrap/scss/tables";
42
+ @import "bootstrap/scss/transitions";
43
+
44
+ // Include utilities API last to generate classes based on the Sass map in `_utilities.scss`
45
+ @import "bootstrap/scss/utilities/api";
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Conference Entry Point
3
+ */
4
+
5
+ // 1. Bootstrap Framework
6
+ @use "./bootstrap";
7
+
8
+ // 2. Bootstrap Icons
9
+ @use "bootstrap-icons/font/bootstrap-icons" with (
10
+ $bootstrap-icons-font-dir: "../webfonts"
11
+ );
12
+
13
+ // 3. Leaflet Map Styles
14
+ @use "leaflet/dist/leaflet.css";
15
+ @use "leaflet-easybutton/src/easy-button.css";
16
+ @use "leaflet.locatecontrol/dist/L.Control.Locate.css";
17
+
18
+ // 4. Conference Theme Styles
19
+ @use "./theme";
@@ -0,0 +1,661 @@
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
+ max-width: none !important;
50
+ max-height: none !important;
51
+ }
52
+ .leaflet-container .leaflet-marker-pane img,
53
+ .leaflet-container .leaflet-shadow-pane img,
54
+ .leaflet-container .leaflet-tile-pane img,
55
+ .leaflet-container img.leaflet-image-layer,
56
+ .leaflet-container .leaflet-tile {
57
+ max-width: none !important;
58
+ max-height: none !important;
59
+ width: auto;
60
+ padding: 0;
61
+ }
62
+
63
+ .leaflet-container img.leaflet-tile {
64
+ /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
65
+ mix-blend-mode: plus-lighter;
66
+ }
67
+
68
+ .leaflet-container.leaflet-touch-zoom {
69
+ -ms-touch-action: pan-x pan-y;
70
+ touch-action: pan-x pan-y;
71
+ }
72
+ .leaflet-container.leaflet-touch-drag {
73
+ -ms-touch-action: pinch-zoom;
74
+ /* Fallback for FF which doesn't support pinch-zoom */
75
+ touch-action: none;
76
+ touch-action: pinch-zoom;
77
+ }
78
+ .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
79
+ -ms-touch-action: none;
80
+ touch-action: none;
81
+ }
82
+ .leaflet-container {
83
+ -webkit-tap-highlight-color: transparent;
84
+ }
85
+ .leaflet-container a {
86
+ -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
87
+ }
88
+ .leaflet-tile {
89
+ filter: inherit;
90
+ visibility: hidden;
91
+ }
92
+ .leaflet-tile-loaded {
93
+ visibility: inherit;
94
+ }
95
+ .leaflet-zoom-box {
96
+ width: 0;
97
+ height: 0;
98
+ -moz-box-sizing: border-box;
99
+ box-sizing: border-box;
100
+ z-index: 800;
101
+ }
102
+ /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
103
+ .leaflet-overlay-pane svg {
104
+ -moz-user-select: none;
105
+ }
106
+
107
+ .leaflet-pane { z-index: 400; }
108
+
109
+ .leaflet-tile-pane { z-index: 200; }
110
+ .leaflet-overlay-pane { z-index: 400; }
111
+ .leaflet-shadow-pane { z-index: 500; }
112
+ .leaflet-marker-pane { z-index: 600; }
113
+ .leaflet-tooltip-pane { z-index: 650; }
114
+ .leaflet-popup-pane { z-index: 700; }
115
+
116
+ .leaflet-map-pane canvas { z-index: 100; }
117
+ .leaflet-map-pane svg { z-index: 200; }
118
+
119
+ .leaflet-vml-shape {
120
+ width: 1px;
121
+ height: 1px;
122
+ }
123
+ .lvml {
124
+ behavior: url(#default#VML);
125
+ display: inline-block;
126
+ position: absolute;
127
+ }
128
+
129
+
130
+ /* control positioning */
131
+
132
+ .leaflet-control {
133
+ position: relative;
134
+ z-index: 800;
135
+ pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
136
+ pointer-events: auto;
137
+ }
138
+ .leaflet-top,
139
+ .leaflet-bottom {
140
+ position: absolute;
141
+ z-index: 1000;
142
+ pointer-events: none;
143
+ }
144
+ .leaflet-top {
145
+ top: 0;
146
+ }
147
+ .leaflet-right {
148
+ right: 0;
149
+ }
150
+ .leaflet-bottom {
151
+ bottom: 0;
152
+ }
153
+ .leaflet-left {
154
+ left: 0;
155
+ }
156
+ .leaflet-control {
157
+ float: left;
158
+ clear: both;
159
+ }
160
+ .leaflet-right .leaflet-control {
161
+ float: right;
162
+ }
163
+ .leaflet-top .leaflet-control {
164
+ margin-top: 10px;
165
+ }
166
+ .leaflet-bottom .leaflet-control {
167
+ margin-bottom: 10px;
168
+ }
169
+ .leaflet-left .leaflet-control {
170
+ margin-left: 10px;
171
+ }
172
+ .leaflet-right .leaflet-control {
173
+ margin-right: 10px;
174
+ }
175
+
176
+
177
+ /* zoom and fade animations */
178
+
179
+ .leaflet-fade-anim .leaflet-popup {
180
+ opacity: 0;
181
+ -webkit-transition: opacity 0.2s linear;
182
+ -moz-transition: opacity 0.2s linear;
183
+ transition: opacity 0.2s linear;
184
+ }
185
+ .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
186
+ opacity: 1;
187
+ }
188
+ .leaflet-zoom-animated {
189
+ -webkit-transform-origin: 0 0;
190
+ -ms-transform-origin: 0 0;
191
+ transform-origin: 0 0;
192
+ }
193
+ svg.leaflet-zoom-animated {
194
+ will-change: transform;
195
+ }
196
+
197
+ .leaflet-zoom-anim .leaflet-zoom-animated {
198
+ -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
199
+ -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
200
+ transition: transform 0.25s cubic-bezier(0,0,0.25,1);
201
+ }
202
+ .leaflet-zoom-anim .leaflet-tile,
203
+ .leaflet-pan-anim .leaflet-tile {
204
+ -webkit-transition: none;
205
+ -moz-transition: none;
206
+ transition: none;
207
+ }
208
+
209
+ .leaflet-zoom-anim .leaflet-zoom-hide {
210
+ visibility: hidden;
211
+ }
212
+
213
+
214
+ /* cursors */
215
+
216
+ .leaflet-interactive {
217
+ cursor: pointer;
218
+ }
219
+ .leaflet-grab {
220
+ cursor: -webkit-grab;
221
+ cursor: -moz-grab;
222
+ cursor: grab;
223
+ }
224
+ .leaflet-crosshair,
225
+ .leaflet-crosshair .leaflet-interactive {
226
+ cursor: crosshair;
227
+ }
228
+ .leaflet-popup-pane,
229
+ .leaflet-control {
230
+ cursor: auto;
231
+ }
232
+ .leaflet-dragging .leaflet-grab,
233
+ .leaflet-dragging .leaflet-grab .leaflet-interactive,
234
+ .leaflet-dragging .leaflet-marker-draggable {
235
+ cursor: move;
236
+ cursor: -webkit-grabbing;
237
+ cursor: -moz-grabbing;
238
+ cursor: grabbing;
239
+ }
240
+
241
+ /* marker & overlays interactivity */
242
+ .leaflet-marker-icon,
243
+ .leaflet-marker-shadow,
244
+ .leaflet-image-layer,
245
+ .leaflet-pane > svg path,
246
+ .leaflet-tile-container {
247
+ pointer-events: none;
248
+ }
249
+
250
+ .leaflet-marker-icon.leaflet-interactive,
251
+ .leaflet-image-layer.leaflet-interactive,
252
+ .leaflet-pane > svg path.leaflet-interactive,
253
+ svg.leaflet-image-layer.leaflet-interactive path {
254
+ pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
255
+ pointer-events: auto;
256
+ }
257
+
258
+ /* visual tweaks */
259
+
260
+ .leaflet-container {
261
+ background: #ddd;
262
+ outline-offset: 1px;
263
+ }
264
+ .leaflet-container a {
265
+ color: #0078A8;
266
+ }
267
+ .leaflet-zoom-box {
268
+ border: 2px dotted #38f;
269
+ background: rgba(255,255,255,0.5);
270
+ }
271
+
272
+
273
+ /* general typography */
274
+ .leaflet-container {
275
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
276
+ font-size: 12px;
277
+ font-size: 0.75rem;
278
+ line-height: 1.5;
279
+ }
280
+
281
+
282
+ /* general toolbar styles */
283
+
284
+ .leaflet-bar {
285
+ box-shadow: 0 1px 5px rgba(0,0,0,0.65);
286
+ border-radius: 4px;
287
+ }
288
+ .leaflet-bar a {
289
+ background-color: #fff;
290
+ border-bottom: 1px solid #ccc;
291
+ width: 26px;
292
+ height: 26px;
293
+ line-height: 26px;
294
+ display: block;
295
+ text-align: center;
296
+ text-decoration: none;
297
+ color: black;
298
+ }
299
+ .leaflet-bar a,
300
+ .leaflet-control-layers-toggle {
301
+ background-position: 50% 50%;
302
+ background-repeat: no-repeat;
303
+ display: block;
304
+ }
305
+ .leaflet-bar a:hover,
306
+ .leaflet-bar a:focus {
307
+ background-color: #f4f4f4;
308
+ }
309
+ .leaflet-bar a:first-child {
310
+ border-top-left-radius: 4px;
311
+ border-top-right-radius: 4px;
312
+ }
313
+ .leaflet-bar a:last-child {
314
+ border-bottom-left-radius: 4px;
315
+ border-bottom-right-radius: 4px;
316
+ border-bottom: none;
317
+ }
318
+ .leaflet-bar a.leaflet-disabled {
319
+ cursor: default;
320
+ background-color: #f4f4f4;
321
+ color: #bbb;
322
+ }
323
+
324
+ .leaflet-touch .leaflet-bar a {
325
+ width: 30px;
326
+ height: 30px;
327
+ line-height: 30px;
328
+ }
329
+ .leaflet-touch .leaflet-bar a:first-child {
330
+ border-top-left-radius: 2px;
331
+ border-top-right-radius: 2px;
332
+ }
333
+ .leaflet-touch .leaflet-bar a:last-child {
334
+ border-bottom-left-radius: 2px;
335
+ border-bottom-right-radius: 2px;
336
+ }
337
+
338
+ /* zoom control */
339
+
340
+ .leaflet-control-zoom-in,
341
+ .leaflet-control-zoom-out {
342
+ font: bold 18px 'Lucida Console', Monaco, monospace;
343
+ text-indent: 1px;
344
+ }
345
+
346
+ .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
347
+ font-size: 22px;
348
+ }
349
+
350
+
351
+ /* layers control */
352
+
353
+ .leaflet-control-layers {
354
+ box-shadow: 0 1px 5px rgba(0,0,0,0.4);
355
+ background: #fff;
356
+ border-radius: 5px;
357
+ }
358
+ .leaflet-control-layers-toggle {
359
+ background-image: url(images/layers.png);
360
+ width: 36px;
361
+ height: 36px;
362
+ }
363
+ .leaflet-retina .leaflet-control-layers-toggle {
364
+ background-image: url(images/layers-2x.png);
365
+ background-size: 26px 26px;
366
+ }
367
+ .leaflet-touch .leaflet-control-layers-toggle {
368
+ width: 44px;
369
+ height: 44px;
370
+ }
371
+ .leaflet-control-layers .leaflet-control-layers-list,
372
+ .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
373
+ display: none;
374
+ }
375
+ .leaflet-control-layers-expanded .leaflet-control-layers-list {
376
+ display: block;
377
+ position: relative;
378
+ }
379
+ .leaflet-control-layers-expanded {
380
+ padding: 6px 10px 6px 6px;
381
+ color: #333;
382
+ background: #fff;
383
+ }
384
+ .leaflet-control-layers-scrollbar {
385
+ overflow-y: scroll;
386
+ overflow-x: hidden;
387
+ padding-right: 5px;
388
+ }
389
+ .leaflet-control-layers-selector {
390
+ margin-top: 2px;
391
+ position: relative;
392
+ top: 1px;
393
+ }
394
+ .leaflet-control-layers label {
395
+ display: block;
396
+ font-size: 13px;
397
+ font-size: 1.08333em;
398
+ }
399
+ .leaflet-control-layers-separator {
400
+ height: 0;
401
+ border-top: 1px solid #ddd;
402
+ margin: 5px -10px 5px -6px;
403
+ }
404
+
405
+ /* Default icon URLs */
406
+ .leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
407
+ background-image: url(images/marker-icon.png);
408
+ }
409
+
410
+
411
+ /* attribution and scale controls */
412
+
413
+ .leaflet-container .leaflet-control-attribution {
414
+ background: #fff;
415
+ background: rgba(255, 255, 255, 0.8);
416
+ margin: 0;
417
+ }
418
+ .leaflet-control-attribution,
419
+ .leaflet-control-scale-line {
420
+ padding: 0 5px;
421
+ color: #333;
422
+ line-height: 1.4;
423
+ }
424
+ .leaflet-control-attribution a {
425
+ text-decoration: none;
426
+ }
427
+ .leaflet-control-attribution a:hover,
428
+ .leaflet-control-attribution a:focus {
429
+ text-decoration: underline;
430
+ }
431
+ .leaflet-attribution-flag {
432
+ display: inline !important;
433
+ vertical-align: baseline !important;
434
+ width: 1em;
435
+ height: 0.6669em;
436
+ }
437
+ .leaflet-left .leaflet-control-scale {
438
+ margin-left: 5px;
439
+ }
440
+ .leaflet-bottom .leaflet-control-scale {
441
+ margin-bottom: 5px;
442
+ }
443
+ .leaflet-control-scale-line {
444
+ border: 2px solid #777;
445
+ border-top: none;
446
+ line-height: 1.1;
447
+ padding: 2px 5px 1px;
448
+ white-space: nowrap;
449
+ -moz-box-sizing: border-box;
450
+ box-sizing: border-box;
451
+ background: rgba(255, 255, 255, 0.8);
452
+ text-shadow: 1px 1px #fff;
453
+ }
454
+ .leaflet-control-scale-line:not(:first-child) {
455
+ border-top: 2px solid #777;
456
+ border-bottom: none;
457
+ margin-top: -2px;
458
+ }
459
+ .leaflet-control-scale-line:not(:first-child):not(:last-child) {
460
+ border-bottom: 2px solid #777;
461
+ }
462
+
463
+ .leaflet-touch .leaflet-control-attribution,
464
+ .leaflet-touch .leaflet-control-layers,
465
+ .leaflet-touch .leaflet-bar {
466
+ box-shadow: none;
467
+ }
468
+ .leaflet-touch .leaflet-control-layers,
469
+ .leaflet-touch .leaflet-bar {
470
+ border: 2px solid rgba(0,0,0,0.2);
471
+ background-clip: padding-box;
472
+ }
473
+
474
+
475
+ /* popup */
476
+
477
+ .leaflet-popup {
478
+ position: absolute;
479
+ text-align: center;
480
+ margin-bottom: 20px;
481
+ }
482
+ .leaflet-popup-content-wrapper {
483
+ padding: 1px;
484
+ text-align: left;
485
+ border-radius: 12px;
486
+ }
487
+ .leaflet-popup-content {
488
+ margin: 13px 24px 13px 20px;
489
+ line-height: 1.3;
490
+ font-size: 13px;
491
+ font-size: 1.08333em;
492
+ min-height: 1px;
493
+ }
494
+ .leaflet-popup-content p {
495
+ margin: 17px 0;
496
+ margin: 1.3em 0;
497
+ }
498
+ .leaflet-popup-tip-container {
499
+ width: 40px;
500
+ height: 20px;
501
+ position: absolute;
502
+ left: 50%;
503
+ margin-top: -1px;
504
+ margin-left: -20px;
505
+ overflow: hidden;
506
+ pointer-events: none;
507
+ }
508
+ .leaflet-popup-tip {
509
+ width: 17px;
510
+ height: 17px;
511
+ padding: 1px;
512
+
513
+ margin: -10px auto 0;
514
+ pointer-events: auto;
515
+
516
+ -webkit-transform: rotate(45deg);
517
+ -moz-transform: rotate(45deg);
518
+ -ms-transform: rotate(45deg);
519
+ transform: rotate(45deg);
520
+ }
521
+ .leaflet-popup-content-wrapper,
522
+ .leaflet-popup-tip {
523
+ background: white;
524
+ color: #333;
525
+ box-shadow: 0 3px 14px rgba(0,0,0,0.4);
526
+ }
527
+ .leaflet-container a.leaflet-popup-close-button {
528
+ position: absolute;
529
+ top: 0;
530
+ right: 0;
531
+ border: none;
532
+ text-align: center;
533
+ width: 24px;
534
+ height: 24px;
535
+ font: 16px/24px Tahoma, Verdana, sans-serif;
536
+ color: #757575;
537
+ text-decoration: none;
538
+ background: transparent;
539
+ }
540
+ .leaflet-container a.leaflet-popup-close-button:hover,
541
+ .leaflet-container a.leaflet-popup-close-button:focus {
542
+ color: #585858;
543
+ }
544
+ .leaflet-popup-scrolled {
545
+ overflow: auto;
546
+ }
547
+
548
+ .leaflet-oldie .leaflet-popup-content-wrapper {
549
+ -ms-zoom: 1;
550
+ }
551
+ .leaflet-oldie .leaflet-popup-tip {
552
+ width: 24px;
553
+ margin: 0 auto;
554
+
555
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
556
+ filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
557
+ }
558
+
559
+ .leaflet-oldie .leaflet-control-zoom,
560
+ .leaflet-oldie .leaflet-control-layers,
561
+ .leaflet-oldie .leaflet-popup-content-wrapper,
562
+ .leaflet-oldie .leaflet-popup-tip {
563
+ border: 1px solid #999;
564
+ }
565
+
566
+
567
+ /* div icon */
568
+
569
+ .leaflet-div-icon {
570
+ background: #fff;
571
+ border: 1px solid #666;
572
+ }
573
+
574
+
575
+ /* Tooltip */
576
+ /* Base styles for the element that has a tooltip */
577
+ .leaflet-tooltip {
578
+ position: absolute;
579
+ padding: 6px;
580
+ background-color: #fff;
581
+ border: 1px solid #fff;
582
+ border-radius: 3px;
583
+ color: #222;
584
+ white-space: nowrap;
585
+ -webkit-user-select: none;
586
+ -moz-user-select: none;
587
+ -ms-user-select: none;
588
+ user-select: none;
589
+ pointer-events: none;
590
+ box-shadow: 0 1px 3px rgba(0,0,0,0.4);
591
+ }
592
+ .leaflet-tooltip.leaflet-interactive {
593
+ cursor: pointer;
594
+ pointer-events: auto;
595
+ }
596
+ .leaflet-tooltip-top:before,
597
+ .leaflet-tooltip-bottom:before,
598
+ .leaflet-tooltip-left:before,
599
+ .leaflet-tooltip-right:before {
600
+ position: absolute;
601
+ pointer-events: none;
602
+ border: 6px solid transparent;
603
+ background: transparent;
604
+ content: "";
605
+ }
606
+
607
+ /* Directions */
608
+
609
+ .leaflet-tooltip-bottom {
610
+ margin-top: 6px;
611
+ }
612
+ .leaflet-tooltip-top {
613
+ margin-top: -6px;
614
+ }
615
+ .leaflet-tooltip-bottom:before,
616
+ .leaflet-tooltip-top:before {
617
+ left: 50%;
618
+ margin-left: -6px;
619
+ }
620
+ .leaflet-tooltip-top:before {
621
+ bottom: 0;
622
+ margin-bottom: -12px;
623
+ border-top-color: #fff;
624
+ }
625
+ .leaflet-tooltip-bottom:before {
626
+ top: 0;
627
+ margin-top: -12px;
628
+ margin-left: -6px;
629
+ border-bottom-color: #fff;
630
+ }
631
+ .leaflet-tooltip-left {
632
+ margin-left: -6px;
633
+ }
634
+ .leaflet-tooltip-right {
635
+ margin-left: 6px;
636
+ }
637
+ .leaflet-tooltip-left:before,
638
+ .leaflet-tooltip-right:before {
639
+ top: 50%;
640
+ margin-top: -6px;
641
+ }
642
+ .leaflet-tooltip-left:before {
643
+ right: 0;
644
+ margin-right: -12px;
645
+ border-left-color: #fff;
646
+ }
647
+ .leaflet-tooltip-right:before {
648
+ left: 0;
649
+ margin-left: -12px;
650
+ border-right-color: #fff;
651
+ }
652
+
653
+ /* Printing */
654
+
655
+ @media print {
656
+ /* Prevent printers from removing background-images of controls. */
657
+ .leaflet-control {
658
+ -webkit-print-color-adjust: exact;
659
+ print-color-adjust: exact;
660
+ }
661
+ }