about summary refs log tree commit diff
path: root/v0/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'v0/style.css')
-rw-r--r--v0/style.css119
1 files changed, 119 insertions, 0 deletions
diff --git a/v0/style.css b/v0/style.css
new file mode 100644
index 0000000..f3b74eb
--- /dev/null
+++ b/v0/style.css
@@ -0,0 +1,119 @@
+html,
+body,
+#map {
+    width: 100%;
+    height: 100%;
+    margin: 0;
+    padding: 0;
+}
+
+#map {
+    position: absolute;
+    background: #fff;
+}
+
+#header {
+    padding: 0px;
+    position: absolute;
+    top: 0px;
+    left: 0px;
+    right: 0px;
+    width: 100%;
+    height: 52px;
+    z-index: 1000;
+}
+
+#searchtext {
+    position: absolute;
+    width: auto;
+    height: auto;
+    margin: 0;
+    top: 8px;
+    left: 8px;
+    right: 52px;
+    bottom: 8px;
+    font-size: 16px;
+}
+
+#result {
+    display: none;
+    margin: 0;
+    padding: 0;
+    z-index: 9999;
+    position: absolute;
+    width: 50%;
+    max-width: 494px;
+    border-radius: 5px;
+    border: solid #ccc 2px;
+}
+
+#result ul li,
+#result ul {
+    margin: 0;
+    padding: 0 3px;
+    background-color: #eee;
+    list-style: none;
+    cursor: pointer;
+    cursor: hand;
+}
+
+li.selected {
+    font-weight: bold;
+}
+
+.btn3m {
+    position: absolute;
+    top: 8px;
+    padding: 5px;
+}
+
+#btnsearch {
+    right: 52px;
+}
+
+#btnmarker {
+    right: 8px;
+}
+
+#search-icon {
+    width: 24px;
+    height: 24px;
+    background: url(images/search.png) no-repeat;
+    background-position: center;
+    background-size: auto 100%;
+}
+
+#marker-icon {
+    width: 24px;
+    height: 24px;
+    background: url(images/marker-icon-red.png) no-repeat;
+    background-position: center;
+    background-size: auto 100%;
+}
+
+.active #marker-icon {
+    background-image: url(images/marker-icon-grey.png);
+}
+
+#footer {
+    display: none;
+    position: absolute;
+    left: 0px;
+    right: 0px;
+    bottom: 0px;
+    height: 52px;
+    text-align: center;
+    background: rgba(255, 255, 255, 0.8);
+}
+
+#footer.visible {
+    display: block;
+}
+
+#url {
+    margin-top: 8px;
+    width: 100%;
+    max-width: 800px;
+    height: 34px;
+    font-size: 16px;
+}