aboutsummaryrefslogtreecommitdiff
path: root/visualizer/style.css
diff options
context:
space:
mode:
authorÉtienne Simon <esimon@esimon.eu>2015-05-11 20:00:04 -0400
committerÉtienne Simon <esimon@esimon.eu>2015-05-11 20:00:04 -0400
commit1eca8867751df644a62752fbbfbc6a6de849de74 (patch)
treeb0ba7e868a38e3e18c2e6c0eb5626cec035c0e5b /visualizer/style.css
parentbfda3532ea58a48533ceaa417b1bd5c3f5137be3 (diff)
downloadtaxi-1eca8867751df644a62752fbbfbc6a6de849de74.tar.gz
taxi-1eca8867751df644a62752fbbfbc6a6de849de74.zip
Add visualizer.
Lasciate ogni speranza voi ch'entrate: I am the bone of my javascript DOM is my body and JQuery is my blood I have created over a thousand lines Unknown to death Nor known to life Have withstood pain to create many functions Yet those hands shall never type anything So, as I pray, Unlimited Openlayers Works
Diffstat (limited to 'visualizer/style.css')
-rw-r--r--visualizer/style.css124
1 files changed, 124 insertions, 0 deletions
diff --git a/visualizer/style.css b/visualizer/style.css
new file mode 100644
index 0000000..b51b077
--- /dev/null
+++ b/visualizer/style.css
@@ -0,0 +1,124 @@
+.map {
+ position: fixed;
+ left: 0; right:0; top:0; bottom:0;
+ z-index: 0;
+}
+
+.open-datalist {
+ top: .5em;
+ right: .5em;
+ z-index: 10;
+}
+
+#datalist {
+ position: fixed;
+ right:0; top:0; bottom:0;
+ width: 20em;
+ display: none;
+ z-index: 1;
+ background-color: #fff;
+ border-left: solid 1px black;
+}
+
+#datalist-tree {
+ position: absolute;
+ left:0; top:0; bottom:4em;
+ width: 100%;
+ overflow-y: auto;
+}
+
+#datalist-tree > ul {
+ padding-left: 0.5em;
+}
+
+#datalist-tree li > ul {
+ padding-left: 1.5em;
+}
+
+#datalist-tree li {
+ list-style-type: none;
+}
+
+#dataextract {
+ position: fixed;
+ bottom: 0;
+ height: 3.5em;
+}
+
+#dataextract input { width: 100%; }
+
+.open-config {
+ top: 65px;
+ left: .5em;
+ z-index: 10;
+}
+
+#config {
+ position: absolute;
+ left: 2em; top: 65px;
+ display: none;
+ z-index: 2;
+}
+
+#config ul ul {
+ top: 0px !important;
+ width: 12em;
+}
+
+.measure-tooltip {
+ position: relative;
+ background: rgba(0, 0, 0, 0.5);
+ border-radius: 4px;
+ color: white;
+ padding: 4px 8px;
+ opacity: 0.7;
+ white-space: nowrap;
+}
+
+.measure-tooltip-value {
+ opacity: 1;
+ font-weight: bold;
+}
+
+.measure-tooltip-static {
+ background-color: #ffcc33;
+ color: black;
+ border: 1px solid #fff;
+}
+
+.measure-tooltip-value:before,
+.measure-tooltip-static:before {
+ border-top: 6px solid rgba(0, 0, 0, 0.5);
+ border-right: 6px solid transparent;
+ border-left: 6px solid transparent;
+ content: "";
+ position: absolute;
+ bottom: -6px;
+ margin-left: -7px;
+ left: 50%;
+}
+
+.measure-tooltip-static:before {
+ border-top-color: #ffcc33;
+}
+
+#featureinfo {
+ position: absolute;
+ z-index: 100;
+ color: #fff;
+ background-color: #000;
+ border: solid 1px #fff;
+ border-radius: 10px;
+ padding: 4px;
+ opacity: 0.75;
+}
+
+#coordinfo {
+ position: absolute;
+ left: 0; bottom: 0;
+ z-index: 100;
+ color: #fff;
+ background-color: #000;
+ padding: 3px;
+ opacity: 0.66;
+}