diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2016-04-13 15:21:30 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2016-04-13 15:21:30 +0200 |
commit | 5dd90671507f8f56b27fe9d8a2fd25c1adb08d6b (patch) | |
tree | c42f4bc0da3b55d0315ecbc26d67f675308a7d03 /css | |
parent | cb092e60bf074e4ed587641ba8b6fd8dfdc43679 (diff) | |
download | perl-software-in-gnu-guix-5dd90671507f8f56b27fe9d8a2fd25c1adb08d6b.tar perl-software-in-gnu-guix-5dd90671507f8f56b27fe9d8a2fd25c1adb08d6b.tar.gz |
overview now works with percentage based width/height #1247
Diffstat (limited to 'css')
-rw-r--r-- | css/reveal.css | 5 | ||||
-rw-r--r-- | css/reveal.scss | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/css/reveal.css b/css/reveal.css index 3a31fa4..b203074 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -20,7 +20,7 @@ html, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal i .reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed, .reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary, -.reveal time, .reveal mark, .reveal audio, video { +.reveal time, .reveal mark, .reveal audio, .reveal video { margin: 0; padding: 0; border: 0; @@ -989,7 +989,8 @@ html:-moz-full-screen-ancestor { -webkit-perspective: 700px; perspective: 700px; } .reveal.overview .slides section { - height: 700px; + height: 100%; + top: 0 !important; opacity: 1 !important; overflow: hidden; visibility: visible !important; diff --git a/css/reveal.scss b/css/reveal.scss index 8cf8cda..f8d6904 100644 --- a/css/reveal.scss +++ b/css/reveal.scss @@ -1022,7 +1022,8 @@ html:-moz-full-screen-ancestor { perspective: 700px; .slides section { - height: 700px; + height: 100%; + top: 0 !important; opacity: 1 !important; overflow: hidden; visibility: visible !important; |