diff options
| -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) { |
