summaryrefslogtreecommitdiff
path: root/assets/stylesheets
diff options
context:
space:
mode:
Diffstat (limited to 'assets/stylesheets')
-rw-r--r--assets/stylesheets/css.css38
-rw-r--r--assets/stylesheets/map.css30
2 files changed, 0 insertions, 68 deletions
diff --git a/assets/stylesheets/css.css b/assets/stylesheets/css.css
deleted file mode 100644
index 23ca23e..0000000
--- a/assets/stylesheets/css.css
+++ /dev/null
@@ -1,38 +0,0 @@
-* {
- 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/assets/stylesheets/map.css b/assets/stylesheets/map.css
deleted file mode 100644
index 2968f34..0000000
--- a/assets/stylesheets/map.css
+++ /dev/null
@@ -1,30 +0,0 @@
-#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);
-}