From 16a831488d5a4071f3433ca97cde13ec62136631 Mon Sep 17 00:00:00 2001
From: Jonas Smedegaard <dr@jones.dk>
Date: Mon, 14 May 2018 00:08:20 +0200
Subject: Initial draft.

---
 src/css/font-awesome.css                  |   1 +
 src/css/leaflet/MarkerCluster.Default.css |   1 +
 src/css/leaflet/MarkerCluster.css         |   1 +
 src/css/leaflet/extra-markers.css         | 236 ++++++++++++++++++++++++++++++
 src/css/leaflet/leaflet.css               |   1 +
 src/css/map.css                           |  23 +++
 6 files changed, 263 insertions(+)
 create mode 120000 src/css/font-awesome.css
 create mode 120000 src/css/leaflet/MarkerCluster.Default.css
 create mode 120000 src/css/leaflet/MarkerCluster.css
 create mode 100644 src/css/leaflet/extra-markers.css
 create mode 120000 src/css/leaflet/leaflet.css
 create mode 100644 src/css/map.css

(limited to 'src/css')

diff --git a/src/css/font-awesome.css b/src/css/font-awesome.css
new file mode 120000
index 0000000..faba91f
--- /dev/null
+++ b/src/css/font-awesome.css
@@ -0,0 +1 @@
+/usr/share/fonts-font-awesome/css/font-awesome.css
\ No newline at end of file
diff --git a/src/css/leaflet/MarkerCluster.Default.css b/src/css/leaflet/MarkerCluster.Default.css
new file mode 120000
index 0000000..2cf500e
--- /dev/null
+++ b/src/css/leaflet/MarkerCluster.Default.css
@@ -0,0 +1 @@
+/usr/share/javascript/leaflet/MarkerCluster.Default.css
\ No newline at end of file
diff --git a/src/css/leaflet/MarkerCluster.css b/src/css/leaflet/MarkerCluster.css
new file mode 120000
index 0000000..a791781
--- /dev/null
+++ b/src/css/leaflet/MarkerCluster.css
@@ -0,0 +1 @@
+/usr/share/javascript/leaflet/MarkerCluster.css
\ No newline at end of file
diff --git a/src/css/leaflet/extra-markers.css b/src/css/leaflet/extra-markers.css
new file mode 100644
index 0000000..735dd87
--- /dev/null
+++ b/src/css/leaflet/extra-markers.css
@@ -0,0 +1,236 @@
+/* Marker setup */
+.extra-marker {
+  background: url("../../img/leaflet.extra-markers/markers_default.png") no-repeat 0 0;
+  width: 35px;
+  height: 46px;
+  position: absolute;
+  left: 0;
+  top: 0;
+  display: block;
+  text-align: center;
+}
+
+.extra-marker-svg {
+  background: none;
+}
+
+.extra-marker svg {
+  position: absolute;
+  top: 2px;
+  left: 3px;
+  width: 30px;
+  stroke-width:1;
+}
+
+.extra-marker-shadow {
+  background: url("../../img/leaflet.extra-markers/markers_shadow.png") no-repeat 0 0;
+  width: 36px;
+  height: 16px;
+}
+/* Retina displays */
+@media (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
+  .extra-marker {
+    background-image: url("../../img/leaflet.extra-markers/markers_default@2x.png");
+    background-size: 540px 184px;
+  }
+  .extra-marker-shadow {
+    background-image: url("../../img/leaflet.extra-markers/markers_shadow@2x.png");
+    background-size: 35px 16px;
+  }
+}
+/* Icons */
+.extra-marker i {
+  color: #fff;
+  margin-top: 10px;
+  display: inline-block;
+  font-size: 14px;
+}
+/* Semantic UI Fix */
+.extra-marker i.icon {
+  margin-right: 0;
+  opacity: 1;
+}
+/* Sprites setup */
+.extra-marker-circle-red {
+  background-position: 0 0;
+}
+.extra-marker-circle-orange-dark {
+  background-position: -36px 0;
+}
+.extra-marker-circle-orange {
+  background-position: -72px 0;
+}
+.extra-marker-circle-yellow {
+  background-position: -108px 0;
+}
+.extra-marker-circle-blue-dark {
+  background-position: -144px 0;
+}
+.extra-marker-circle-blue {
+  background-position: -180px 0;
+}
+.extra-marker-circle-cyan {
+  background-position: -216px 0;
+}
+.extra-marker-circle-purple {
+  background-position: -252px 0;
+}
+.extra-marker-circle-violet {
+  background-position: -288px 0;
+}
+.extra-marker-circle-pink {
+  background-position: -324px 0;
+}
+.extra-marker-circle-green-dark {
+  background-position: -360px 0;
+}
+.extra-marker-circle-green {
+  background-position: -396px 0;
+}
+.extra-marker-circle-green-light {
+  background-position: -432px 0;
+}
+.extra-marker-circle-black {
+  background-position: -468px 0;
+}
+.extra-marker-circle-white {
+  background-position: -504px 0;
+}
+.extra-marker-square-red {
+  background-position: 0 -46px;
+}
+.extra-marker-square-orange-dark {
+  background-position: -36px -46px;
+}
+.extra-marker-square-orange {
+  background-position: -72px -46px;
+}
+.extra-marker-square-yellow {
+  background-position: -108px -46px;
+}
+.extra-marker-square-blue-dark {
+  background-position: -144px -46px;
+}
+.extra-marker-square-blue {
+  background-position: -180px -46px;
+}
+.extra-marker-square-cyan {
+  background-position: -216px -46px;
+}
+.extra-marker-square-purple {
+  background-position: -252px -46px;
+}
+.extra-marker-square-violet {
+  background-position: -288px -46px;
+}
+.extra-marker-square-pink {
+  background-position: -324px -46px;
+}
+.extra-marker-square-green-dark {
+  background-position: -360px -46px;
+}
+.extra-marker-square-green {
+  background-position: -396px -46px;
+}
+.extra-marker-square-green-light {
+  background-position: -432px -46px;
+}
+.extra-marker-square-black {
+  background-position: -468px -46px;
+}
+.extra-marker-square-white {
+  background-position: -504px -46px;
+}
+.extra-marker-star-red {
+  background-position: 0 -92px;
+}
+.extra-marker-star-orange-dark {
+  background-position: -36px -92px;
+}
+.extra-marker-star-orange {
+  background-position: -72px -92px;
+}
+.extra-marker-star-yellow {
+  background-position: -108px -92px;
+}
+.extra-marker-star-blue-dark {
+  background-position: -144px -92px;
+}
+.extra-marker-star-blue {
+  background-position: -180px -92px;
+}
+.extra-marker-star-cyan {
+  background-position: -216px -92px;
+}
+.extra-marker-star-purple {
+  background-position: -252px -92px;
+}
+.extra-marker-star-violet {
+  background-position: -288px -92px;
+}
+.extra-marker-star-pink {
+  background-position: -324px -92px;
+}
+.extra-marker-star-green-dark {
+  background-position: -360px -92px;
+}
+.extra-marker-star-green {
+  background-position: -396px -92px;
+}
+.extra-marker-star-green-light {
+  background-position: -432px -92px;
+}
+.extra-marker-star-black {
+  background-position: -468px -92px;
+}
+.extra-marker-star-white {
+  background-position: -504px -92px;
+}
+.extra-marker-penta-red {
+  background-position: 0 -138px;
+}
+.extra-marker-penta-orange-dark {
+  background-position: -36px -138px;
+}
+.extra-marker-penta-orange {
+  background-position: -72px -138px;
+}
+.extra-marker-penta-yellow {
+  background-position: -108px -138px;
+}
+.extra-marker-penta-blue-dark {
+  background-position: -144px -138px;
+}
+.extra-marker-penta-blue {
+  background-position: -180px -138px;
+}
+.extra-marker-penta-cyan {
+  background-position: -216px -138px;
+}
+.extra-marker-penta-purple {
+  background-position: -252px -138px;
+}
+.extra-marker-penta-violet {
+  background-position: -288px -138px;
+}
+.extra-marker-penta-pink {
+  background-position: -324px -138px;
+}
+.extra-marker-penta-green-dark {
+  background-position: -360px -138px;
+}
+.extra-marker-penta-green {
+  background-position: -396px -138px;
+}
+.extra-marker-penta-green-light {
+  background-position: -432px -138px;
+}
+.extra-marker-penta-black {
+  background-position: -468px -138px;
+}
+.extra-marker-penta-white {
+  background-position: -504px -138px;
+}
+.extra-marker .fa-number:before {
+  content: attr(number);
+}
diff --git a/src/css/leaflet/leaflet.css b/src/css/leaflet/leaflet.css
new file mode 120000
index 0000000..40a1f03
--- /dev/null
+++ b/src/css/leaflet/leaflet.css
@@ -0,0 +1 @@
+/usr/share/javascript/leaflet/leaflet.css
\ No newline at end of file
diff --git a/src/css/map.css b/src/css/map.css
new file mode 100644
index 0000000..626ff84
--- /dev/null
+++ b/src/css/map.css
@@ -0,0 +1,23 @@
+.leaflet-control-layers-toggle {
+	background-image: url(../img/leaflet/layers.png);
+}
+
+.leaflet-retina .leaflet-control-layers-toggle {
+	background-image: url(../img/leaflet/layers-2x.png);
+}
+
+#content {
+	position: absolute;
+	top: 0;
+	left: 0;
+	height: 100%;
+	width: 100%;
+}
+
+.leaflet-control-scale {
+	text-align: center;
+}
+
+.info {
+	background-color: white;
+}
-- 
cgit v1.2.3