diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-11-10 16:00:01 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-11-10 16:00:01 -0500 |
| commit | 8e6693f0b98733b7958a33948e8705c42f35c571 (patch) | |
| tree | 53c83f30de746466962b0bd7783de0ed8c274865 | |
| parent | a1860ea42334447f49649a3491bad605237a23d5 (diff) | |
randomize button, minimap in a weird place
| -rwxr-xr-x | public/assets/stylesheets/app.css | 18 | ||||
| -rw-r--r-- | views/reader.ejs | 4 |
2 files changed, 19 insertions, 3 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index cb58ef6..bf76a71 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -1574,6 +1574,9 @@ border-left: 1px solid black; -webkit-transition:opacity 0.3s ease-in-out; transition:opacity 0.3s ease-in-out; } +.reader #minimap { + left: 210px; +} /* WALLPAPER PICKER */ @@ -2168,6 +2171,21 @@ input[type="range"]::-webkit-slider-thumb { margin-top:5px; width: 100%; } +#randomize { + background: white; + display: inline-block; + color: black; + text-decoration:none; + border:1px solid black; + text-align: center; + font-size: 13px; + padding: 3px; + cursor: pointer; +} +#randomize:hover { + color: white; + background: black; +} .warn { background:red; display: inline-block; diff --git a/views/reader.ejs b/views/reader.ejs index b9b53d2..09b702e 100644 --- a/views/reader.ejs +++ b/views/reader.ejs @@ -4,7 +4,7 @@ <title>vvalls</title> [[ include partials/meta ]] </head> -<body class="loading"> +<body class="loading reader"> <div id="scene"></div> @@ -18,11 +18,9 @@ [[ include controls/reader/embed ]] </div> -<!-- <div id="minimap" class="vvbox" data-intro="Mini-map shows your position and orientation in a room. Navigate with WASD keys or drag here." data-position="top"> <span class="el"></span> </div> - --> </div> [[ } ]] |
