From 57b8d31119e351b15ffbf90e7f133de7f2818081 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Sat, 15 Apr 2017 15:40:27 +0000 Subject: [PATCH] Add map showing tram location --- map.css | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 49 insertions(+), 0 deletions(-) diff --git a/map.css b/map.css new file mode 100644 index 0000000..e497aec --- /dev/null +++ b/map.css @@ -0,0 +1,49 @@ +html, body, #map { + width: 100%; + height: 100%; + margin: 0; + font-family: sans-serif; +} + +#popup { + color: black; + background: white; + padding: 5px; + border: 1px solid black; + border-radius: 10px; + font-size: 12px; +} +#popup p { + margin: 0; + padding: 5px; +} +#popup .bold { + font-weight: bold; +} + +#title { + top: .5em; + left: .5em; + padding: 2px .5em; + font-weight: bold; + background-color: rgba(255,255,255,.6); +} +#fail { + top: -10em; + right: 0.5em; + background: red; + color: white; + font-weight: bold; + padding: 5px; +} +.ol-zoom { + top: 2.2em; +} + +a { + color: #337ab7; + text-decoration: none; +} +a:hover { + text-decoration: underline; +} -- Gitblit v1.9.1