summaryrefslogtreecommitdiff
path: root/public/assets/stylesheets
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2014-06-03 17:51:34 -0400
committerJules Laplace <jules@okfoc.us>2014-06-03 17:51:34 -0400
commit90142bd07f926ef8a7f3ea86a563ec0ca648ca5d (patch)
tree2851e990b4b71e215ad2fff4dbcaf80229953c35 /public/assets/stylesheets
parent607f69c67a5b4dc72d2754192e3cdf67d0ad11d0 (diff)
pulling in more stuff from posthang
Diffstat (limited to 'public/assets/stylesheets')
-rw-r--r--public/assets/stylesheets/css.css38
-rw-r--r--public/assets/stylesheets/map.css30
2 files changed, 68 insertions, 0 deletions
diff --git a/public/assets/stylesheets/css.css b/public/assets/stylesheets/css.css
new file mode 100644
index 0000000..23ca23e
--- /dev/null
+++ b/public/assets/stylesheets/css.css
@@ -0,0 +1,38 @@
+* {
+ margin:0;
+ padding:0;
+ outline:0;
+ moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
+}
+html, body {
+ width: 100%;
+ height: 100%;
+ background: -moz-linear-gradient(top, rgba(240,249,255,1) 0%, rgba(244,251,255,1) 59%, rgba(244,251,255,1) 59%, rgba(234,247,255,1) 100%); /* FF3.6+ */
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(240,249,255,1)), color-stop(59%,rgba(244,251,255,1)), color-stop(59%,rgba(244,251,255,1)), color-stop(100%,rgba(234,247,255,1))); /* Chrome,Safari4+ */
+ font-family: sans-serif;
+ font-weight: 300;
+}
+.mx-scene {
+ z-index: 1;
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate3d(-50%, -50%, 0);
+ -moz-transform: translate3d(-50%, -50%, 0);
+ transform: translate3d(-50%, -50%, 0);
+ cursor:pointer;
+}
+.mx-object3d.image, .mx-object3d canvas,
+.mx-object3d.backface-hidden {
+ -webkit-backface-visibility: hidden;
+ -moz-backface-visibility: hidden;
+ -ms-backface-visibility: hidden;
+ backface-visibility: hidden;
+}
+.mx-object3d.backface-visible, .mx-object3d.backface-visible canvas{
+ -webkit-backface-visibility: visible;
+ -moz-backface-visibility: visible;
+ -ms-backface-visibility: visible;
+ backface-visibility: visible;
+}
+
diff --git a/public/assets/stylesheets/map.css b/public/assets/stylesheets/map.css
new file mode 100644
index 0000000..2968f34
--- /dev/null
+++ b/public/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);
+}