diff options
| author | Jules Laplace <jules@okfoc.us> | 2016-03-29 15:55:53 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2016-03-29 15:55:53 -0400 |
| commit | 20c26d2a907a8605cbae072f0e9c04a64d2c7c4e (patch) | |
| tree | 0c88d02e2325c16aba5f6cb12f9dff333cc9e6d3 /public | |
| parent | 1ca0ee4ff4ce8ac88f3514dc3a24eeac5e926f3c (diff) | |
hidden stuff
Diffstat (limited to 'public')
| -rw-r--r-- | public/assets/js/app.js | 4 | ||||
| -rw-r--r-- | public/assets/ok.css | 14 |
2 files changed, 16 insertions, 2 deletions
diff --git a/public/assets/js/app.js b/public/assets/js/app.js index 0242437..7240c89 100644 --- a/public/assets/js/app.js +++ b/public/assets/js/app.js @@ -87,7 +87,9 @@ var app = (function() { })() $(".top").each(function(){ - $(".cell, .next", this).css({ 'height': ($(this).height() + 'px') }) + var height = $(this).height() + console.log(height) + $(".cell, .next", this).css({ 'height': (height + 'px') }) }) $(".item").addClass("hidden") diff --git a/public/assets/ok.css b/public/assets/ok.css index a7b6eda..9dc312f 100644 --- a/public/assets/ok.css +++ b/public/assets/ok.css @@ -39,6 +39,16 @@ body { .hidden { display: none!important; } +.item.hidden { + display: block; + opacity: 0; + pointer-events: none; +} +.item { + position: absolute; + top: 0; + left: 0; +} h1 { font-size: 27px; @@ -471,7 +481,9 @@ button.previous { /*height: 20vh;*/ flex: 0 auto; overflow: hidden; +/* padding: 5px 0; + */ cursor: url(img/d.png)32 64, pointer; } @@ -502,7 +514,7 @@ nav { .five span { width: calc(12% - 8px); - margin: 0 4px; + margin: 5px 4px 0 4px; } .press .headings span:nth-child(5) { |
