1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-20 13:31:55 +02:00

add 'resume presentation' button to pause overlay

This commit is contained in:
Hakim El Hattab
2018-07-02 11:08:45 +02:00
parent fd95c8c266
commit b9bb353a11
3 changed files with 40 additions and 1 deletions

View File

@@ -1034,6 +1034,25 @@ $controlsArrowAngleActive: 36deg;
z-index: 100;
transition: all 1s ease;
}
.reveal .pause-overlay .resume-button {
position: absolute;
bottom: 20px;
right: 20px;
color: #ccc;
border-radius: 2px;
padding: 6px 14px;
border: 2px solid #ccc;
font-size: 16px;
background: transparent;
cursor: pointer;
&:hover {
color: #fff;
border-color: #fff;
}
}
.reveal.paused .pause-overlay {
visibility: visible;
opacity: 1;