diff --git a/images/alans.jpg b/images/alans.jpg new file mode 100644 index 0000000..a9b24a5 Binary files /dev/null and b/images/alans.jpg differ diff --git a/images/castle.jpg b/images/castle.jpg new file mode 100644 index 0000000..7fd94ba Binary files /dev/null and b/images/castle.jpg differ diff --git a/images/eastbarrel.jpg b/images/eastbarrel.jpg new file mode 100644 index 0000000..bb19ca2 Binary files /dev/null and b/images/eastbarrel.jpg differ diff --git a/images/fridge.jpg b/images/fridge.jpg new file mode 100644 index 0000000..8aea60d Binary files /dev/null and b/images/fridge.jpg differ diff --git a/images/hummock.jpg b/images/hummock.jpg new file mode 100644 index 0000000..db6e5bc Binary files /dev/null and b/images/hummock.jpg differ diff --git a/images/ironcastle.jpg b/images/ironcastle.jpg new file mode 100644 index 0000000..dda320d Binary files /dev/null and b/images/ironcastle.jpg differ diff --git a/images/irontree.jpg b/images/irontree.jpg new file mode 100644 index 0000000..b713307 Binary files /dev/null and b/images/irontree.jpg differ diff --git a/images/ladder.jpg b/images/ladder.jpg new file mode 100644 index 0000000..e420c3c Binary files /dev/null and b/images/ladder.jpg differ diff --git a/images/point.jpg b/images/point.jpg new file mode 100644 index 0000000..9d384f1 Binary files /dev/null and b/images/point.jpg differ diff --git a/images/ridge.jpg b/images/ridge.jpg new file mode 100644 index 0000000..9d053e1 Binary files /dev/null and b/images/ridge.jpg differ diff --git a/images/sofa.jpg b/images/sofa.jpg new file mode 100644 index 0000000..3d3b62b Binary files /dev/null and b/images/sofa.jpg differ diff --git a/images/threeleggedbarrel.jpg b/images/threeleggedbarrel.jpg new file mode 100644 index 0000000..25f9437 Binary files /dev/null and b/images/threeleggedbarrel.jpg differ diff --git a/images/thumbs/alans.jpg b/images/thumbs/alans.jpg new file mode 100644 index 0000000..e5cb651 Binary files /dev/null and b/images/thumbs/alans.jpg differ diff --git a/images/thumbs/castle.jpg b/images/thumbs/castle.jpg new file mode 100644 index 0000000..5973209 Binary files /dev/null and b/images/thumbs/castle.jpg differ diff --git a/images/thumbs/eastbarrel.jpg b/images/thumbs/eastbarrel.jpg new file mode 100644 index 0000000..16e4123 Binary files /dev/null and b/images/thumbs/eastbarrel.jpg differ diff --git a/images/thumbs/fridge.jpg b/images/thumbs/fridge.jpg new file mode 100644 index 0000000..371fb8b Binary files /dev/null and b/images/thumbs/fridge.jpg differ diff --git a/images/thumbs/hummock.jpg b/images/thumbs/hummock.jpg new file mode 100644 index 0000000..110be42 Binary files /dev/null and b/images/thumbs/hummock.jpg differ diff --git a/images/thumbs/ironcastle.jpg b/images/thumbs/ironcastle.jpg new file mode 100644 index 0000000..2848706 Binary files /dev/null and b/images/thumbs/ironcastle.jpg differ diff --git a/images/thumbs/irontree.jpg b/images/thumbs/irontree.jpg new file mode 100644 index 0000000..5554743 Binary files /dev/null and b/images/thumbs/irontree.jpg differ diff --git a/images/thumbs/ladder.jpg b/images/thumbs/ladder.jpg new file mode 100644 index 0000000..bbdfce9 Binary files /dev/null and b/images/thumbs/ladder.jpg differ diff --git a/images/thumbs/point.jpg b/images/thumbs/point.jpg new file mode 100644 index 0000000..d9ad372 Binary files /dev/null and b/images/thumbs/point.jpg differ diff --git a/images/thumbs/ridge.jpg b/images/thumbs/ridge.jpg new file mode 100644 index 0000000..3031070 Binary files /dev/null and b/images/thumbs/ridge.jpg differ diff --git a/images/thumbs/sofa.jpg b/images/thumbs/sofa.jpg new file mode 100644 index 0000000..b4074e4 Binary files /dev/null and b/images/thumbs/sofa.jpg differ diff --git a/images/thumbs/threeleggedbarrel.jpg b/images/thumbs/threeleggedbarrel.jpg new file mode 100644 index 0000000..c218a35 Binary files /dev/null and b/images/thumbs/threeleggedbarrel.jpg differ diff --git a/images/thumbs/tupperware.jpg b/images/thumbs/tupperware.jpg new file mode 100644 index 0000000..71b66ee Binary files /dev/null and b/images/thumbs/tupperware.jpg differ diff --git a/images/tupperware.jpg b/images/tupperware.jpg new file mode 100644 index 0000000..d3f3f41 Binary files /dev/null and b/images/tupperware.jpg differ diff --git a/map.html b/map.html index b9d6de5..d7dec41 100644 --- a/map.html +++ b/map.html @@ -56,12 +56,89 @@ #popupcontainer .leaflet-popup-content { width: initial; } + + /* BEGIN lightbox */ + + /* simplified from https://jekyllcodex.org/without-plugin/lightbox/ */ + #lightbox { + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + background: rgba(0,0,0,0.85); + z-index: 9999999; + line-height: 0; + cursor: pointer; + display: none; + } + #lightbox .img { + position: relative; + top: 50%; + left: 50%; + transform: translate(-50%,-50%); + max-width: 100%; + max-height: 100%; + } + #lightbox .img img { + opacity: 0; + pointer-events: none; + width: auto; + } + @media screen and (min-width: 1200px) { + #lightbox .img { + max-width: 1200px; + } + } + @media screen and (min-height: 1200px) { + #lightbox .img { + max-height: 1200px; + } + } + #lightbox #close { + height: 50px; + width: 50px; + position: fixed; + cursor: pointer; + text-decoration: none; + z-index: 99; + right: 0; + top: 0; + } + #lightbox #close:after, #lightbox #close:before { + position: absolute; + margin-top: 22px; + margin-left: 14px; + content: ""; + height: 3px; + background: white; + width: 23px; + transform-origin: 50% 50%; + transform: rotate(-45deg); + } + #lightbox #close:after { + transform: rotate(45deg); + } + #lightbox, #lightbox * { + user-select: none; + } + /* END lightbox */
+