summaryrefslogtreecommitdiff
path: root/client/assets/stylesheets/map.css
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2014-06-03 16:24:10 -0400
committerJules Laplace <jules@okfoc.us>2014-06-03 16:24:28 -0400
commit607f69c67a5b4dc72d2754192e3cdf67d0ad11d0 (patch)
tree6556e7922c5bedb274bb1650e5dd100643a7895d /client/assets/stylesheets/map.css
parentd31259291d807c851de4396921e0c26b6dd8dce2 (diff)
partitioning client and serveR
Diffstat (limited to 'client/assets/stylesheets/map.css')
-rw-r--r--client/assets/stylesheets/map.css30
1 files changed, 30 insertions, 0 deletions
diff --git a/client/assets/stylesheets/map.css b/client/assets/stylesheets/map.css
new file mode 100644
index 0000000..2968f34
--- /dev/null
+++ b/client/assets/stylesheets/map.css
@@ -0,0 +1,30 @@
+#map {
+ z-index: 2;
+ display: none;
+ position: fixed;
+ bottom: 100px;
+ left: 50px;
+ width: 20%;
+ height: 50%;
+ background: white;
+ box-shadow: 0 10px 15px rgba(0,0,0,0.5);
+}
+#map .el {
+}
+#map canvas {
+ display: block;
+}
+#map .hud {
+ position: absolute;
+ bottom: 5px;
+ left: 5px;
+ background: rgba(255,255,255,0.8);
+ color: #333;
+}
+#map textarea {
+ width: 100%;
+ height: 75px;
+ border: 0;
+ border-top: 1px dashed #bbf;
+ box-shadow: 0 0 15px rgba(80,80,80,0.8);
+}