summaryrefslogtreecommitdiff
path: root/src/leaflet-soton.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/leaflet-soton.css')
-rw-r--r--src/leaflet-soton.css45
1 files changed, 41 insertions, 4 deletions
diff --git a/src/leaflet-soton.css b/src/leaflet-soton.css
index 1baa2f4..3b6cd46 100644
--- a/src/leaflet-soton.css
+++ b/src/leaflet-soton.css
@@ -193,7 +193,7 @@
display: inline;
}
-.ls-route-master-list li a {
+.ls-route-master-link {
font: 28px/30px Arial, Helvetica, sans-serif;
padding-right: 10px;
padding-left: 10px;
@@ -204,7 +204,7 @@
border-style: solid;
border-color: #000000;
background: #a1a1a1;
- color: white;
+ color: white !important;
font-weight: bold;
}
@@ -217,7 +217,7 @@
display: inline;
}
-.ls-route-list li a {
+.ls-route-link {
font: 20px/22px Arial, Helvetica, sans-serif;
padding-right: 10px;
padding-left: 10px;
@@ -228,7 +228,7 @@
border-style: solid;
border-color: #000000;
background: #a1a1a1;
- color: white;
+ color: white !important;
font-weight: bold;
}
@@ -244,3 +244,40 @@
.leaflet-popup-content {
margin: 6px 9px;
}
+
+.ls-bus-times-table {
+ border-collapse: collapse
+}
+
+.ls-bus-times-table tr td {
+ padding: 0.4em;
+}
+
+.ls-bus-times-table-seperating-td {
+ border-top: 1pt solid black;
+}
+
+.ls-spinning-arrow {
+ font-size: 4em;
+ padding-left: auto;
+ padding-right: auto;
+ -animation: spin .7s infinite linear;
+ -ms-animation: spin .7s infinite linear;
+ -webkit-animation: spinw .7s infinite linear;
+ -moz-animation: spinm .7s infinite linear;
+}
+
+@keyframes spin {
+ from { transform: scale(1) rotate(0deg);}
+ to { transform: scale(1) rotate(360deg);}
+}
+
+@-webkit-keyframes spinw {
+ from { -webkit-transform: rotate(0deg);}
+ to { -webkit-transform: rotate(360deg);}
+}
+
+@-moz-keyframes spinm {
+ from { -moz-transform: rotate(0deg);}
+ to { -moz-transform: rotate(360deg);}
+}