diff options
author | Hakim El Hattab | 2016-10-11 11:03:49 +0200 |
---|---|---|
committer | Hakim El Hattab | 2017-05-16 09:45:37 +0200 |
commit | 2cc5ae946b40f98a7a1f1a883d995615f69681e2 (patch) | |
tree | 30a2a4abe26e893162acf6363e943d4cab1f394f /css/reveal.scss | |
parent | 44a355b6e969d6a1cfbf23cb44079104d4dc6945 (diff) |
new, fixed, speaker notes layout
Diffstat (limited to 'css/reveal.scss')
-rw-r--r-- | css/reveal.scss | 46 |
1 files changed, 31 insertions, 15 deletions
diff --git a/css/reveal.scss b/css/reveal.scss index 42f5d5e..f24ed2c 100644 --- a/css/reveal.scss +++ b/css/reveal.scss @@ -335,11 +335,11 @@ body { transform: translateX(-50%) rotate( -90deg ); } - // Back arrow style: "deemphasized": + // Back arrow style: "faded": // Strongly deemphasizes backwards navigation in favor of drawing // attention to forwards navigation - &[data-controls-back-arrows="deemphasized"] .navigate-left.enabled, - &[data-controls-back-arrows="deemphasized"] .navigate-up.enabled { + &[data-controls-back-arrows="faded"] .navigate-left.enabled, + &[data-controls-back-arrows="faded"] .navigate-up.enabled { opacity: 0.3; &:hover { @@ -1521,21 +1521,26 @@ body { display: none; } +.reveal.show-notes { + max-width: 80vw; + overflow: visible; +} + // An interface element that can optionally be used to show the // speaker notes to all viewers, on top of the presentation .reveal .speaker-notes { - display: none; + display: block; position: absolute; - width: 70%; - max-height: 15%; - left: 15%; - bottom: 26px; - padding: 10px; + width: 20vw; + height: 100%; + top: 0; + left: 100%; + padding: 14px; z-index: 1; font-size: 18px; line-height: 1.4; - color: #fff; - background-color: rgba(0,0,0,0.5); + color: #222; + background-color: #f5f5f5; overflow: auto; box-sizing: border-box; text-align: left; @@ -1543,20 +1548,31 @@ body { -webkit-overflow-scrolling: touch; } -.reveal .speaker-notes.visible:not(:empty) { +.reveal .speaker-notes:before { + content: 'Speaker notes'; display: block; + margin-bottom: 10px; + opacity: 0.5; } @media screen and (max-width: 1024px) { + .reveal.show-notes { + max-width: none; + max-height: 70vh; + overflow: visible; + } + .reveal .speaker-notes { - font-size: 14px; + top: 70vh; + left: 0; + width: 100%; + height: 30vh; } } @media screen and (max-width: 600px) { .reveal .speaker-notes { - width: 90%; - left: 5%; + font-size: 14px; } } |