ability to share presentation with speaker notes #304

This commit is contained in:
Hakim El Hattab
2015-09-09 14:09:37 +02:00
parent 5e3bbdeecf
commit 2ad4065500
4 changed files with 111 additions and 0 deletions

View File

@ -1162,6 +1162,34 @@ body {
.reveal aside.notes {
display: none; }
.reveal .speaker-notes {
display: none;
position: absolute;
width: 70%;
max-height: 15%;
left: 15%;
bottom: 5%;
padding: 10px;
z-index: 1;
font-size: 18px;
line-height: 1.4;
border: 2px solid #fff;
color: #fff;
background-color: rgba(0, 0, 0, 0.5);
overflow: auto;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.reveal .speaker-notes.visible:not(:empty) {
display: block; }
@media screen and (max-width: 800px) {
.reveal .speaker-notes {
width: 90%;
left: 5%;
bottom: 5%;
font-size: 14px; } }
/*********************************************
* ZOOM PLUGIN
*********************************************/

View File

@ -1291,10 +1291,44 @@ body {
* SPEAKER NOTES
*********************************************/
// Hide on-page notes
.reveal aside.notes {
display: none;
}
// 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;
position: absolute;
width: 70%;
max-height: 15%;
left: 15%;
bottom: 5%;
padding: 10px;
z-index: 1;
font-size: 18px;
line-height: 1.4;
border: 2px solid #fff;
color: #fff;
background-color: rgba(0,0,0,0.5);
overflow: auto;
box-sizing: border-box;
}
.reveal .speaker-notes.visible:not(:empty) {
display: block;
}
@media screen and (max-width: 800px) {
.reveal .speaker-notes {
width: 90%;
left: 5%;
bottom: 5%;
font-size: 14px;
}
}
/*********************************************
* ZOOM PLUGIN