diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-10-08 17:40:23 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-10-08 17:40:23 -0400 |
| commit | 9d10f5c508a748a41bf85333eef620f4388956e7 (patch) | |
| tree | 5753564a0e4c9e862b9aee2a5c3b9cca114a469d | |
| parent | 2b71d785c9dd6a8741882c26bfc9caefebfc5b39 (diff) | |
| parent | 0db06769ef542eb9d62b53383d0abeff852bc5db (diff) | |
Merge branch 'master' of github.com:okfocus/vvalls
| -rwxr-xr-x | public/assets/stylesheets/app.css | 30 | ||||
| -rw-r--r-- | views/projects/layouts-modal.ejs | 3 |
2 files changed, 21 insertions, 12 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 35ed951..d384dea 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -335,8 +335,7 @@ iframe.embed { .projectList .room { width: 30vw; height: 23vw; - margin: 1vw; - border: 1vw solid white; + margin: 1vw 1vw 0 1vw; display:table; position: relative; z-index: 1; @@ -355,6 +354,7 @@ iframe.embed { height: 100%; text-align: center; overflow: hidden; + background-color: #ddd; background-size: cover; } .room .images { @@ -414,15 +414,19 @@ iframe.embed { vertical-align: middle; } -.page label { - font-weight: 500; - font-size: 15px; - color: black; - padding: 5px; - text-decoration:none; - display: inline-block; - cursor: pointer; - border: 1px solid transparent; +.page .projectList label { + font-weight: 100; + font-size: 12px; + color: black; + padding: 5px; + text-decoration: none; + display: inline-block; + cursor: pointer; + border: 1px solid transparent; + text-transform: uppercase; + font-family: monospace; + line-height: 18px; + letter-spacing: 1px; } .page .room .holder a:hover { @@ -431,7 +435,8 @@ iframe.embed { } .projectList a:hover label { - border: 1px solid black; + background:black; + color:white; } @@ -678,6 +683,7 @@ iframe.embed { .templates-list { display: inline-block; width: 100%; + margin-bottom: 40px; } .templates::-webkit-scrollbar { width: 5px; diff --git a/views/projects/layouts-modal.ejs b/views/projects/layouts-modal.ejs index dcc53e6..6f60d81 100644 --- a/views/projects/layouts-modal.ejs +++ b/views/projects/layouts-modal.ejs @@ -43,6 +43,9 @@ <div class="templates-list"> </div> + <form> + <input data-role="create-new-layout" class="button_text" type="submit" value="or make your own template"> + </form> </div> <div class="no-templates"> There are no room layouts available. Please <a href="/layout/new">create a new one.</a> |
