Skip to content

Commit ecec2f3

Browse files
committed
add talkmap files
1 parent e787ccc commit ecec2f3

8 files changed

+2821
-0
lines changed

_pages/talkmap.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: archive
3+
title: "Talk map"
4+
permalink: /talkmap.html
5+
author_profile: true
6+
---
7+
8+
{% include base_path %}
9+
10+
<p>A map of all the places I've given talks. Zoom in to see more detail. </p>
11+
<iframe src="/talkmap/map.html" height="700" width="850" style="border:none;"></iframe>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
2+
.marker-cluster-small {
3+
background-color: rgba(181, 226, 140, 0.6);
4+
}
5+
.marker-cluster-small div {
6+
background-color: rgba(110, 204, 57, 0.6);
7+
}
8+
9+
.marker-cluster-medium {
10+
background-color: rgba(241, 211, 87, 0.6);
11+
}
12+
.marker-cluster-medium div {
13+
background-color: rgba(240, 194, 12, 0.6);
14+
}
15+
16+
.marker-cluster-large {
17+
background-color: rgba(253, 156, 115, 0.6);
18+
}
19+
.marker-cluster-large div {
20+
background-color: rgba(241, 128, 23, 0.6);
21+
}
22+
23+
/* IE 6-8 fallback colors */
24+
.leaflet-oldie .marker-cluster-small {
25+
background-color: rgb(181, 226, 140);
26+
}
27+
.leaflet-oldie .marker-cluster-small div {
28+
background-color: rgb(110, 204, 57);
29+
}
30+
31+
.leaflet-oldie .marker-cluster-medium {
32+
background-color: rgb(241, 211, 87);
33+
}
34+
.leaflet-oldie .marker-cluster-medium div {
35+
background-color: rgb(240, 194, 12);
36+
}
37+
38+
.leaflet-oldie .marker-cluster-large {
39+
background-color: rgb(253, 156, 115);
40+
}
41+
.leaflet-oldie .marker-cluster-large div {
42+
background-color: rgb(241, 128, 23);
43+
}
44+
45+
.marker-cluster {
46+
background-clip: padding-box;
47+
border-radius: 20px;
48+
}
49+
.marker-cluster div {
50+
width: 30px;
51+
height: 30px;
52+
margin-left: 5px;
53+
margin-top: 5px;
54+
55+
text-align: center;
56+
border-radius: 15px;
57+
font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
58+
}
59+
.marker-cluster span {
60+
line-height: 30px;
61+
}
62+
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
3+
-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
4+
-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
5+
-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
6+
transition: transform 0.3s ease-out, opacity 0.3s ease-in;
7+
}
8+
9+
.leaflet-cluster-spider-leg {
10+
/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
11+
-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
12+
-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
13+
-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
14+
transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
15+
}
16+

0 commit comments

Comments
 (0)