aboutsummaryrefslogtreecommitdiffhomepage
path: root/css
diff options
context:
space:
mode:
authorHakim El Hattab2012-10-08 00:08:50 -0400
committerHakim El Hattab2012-10-08 00:08:50 -0400
commitf22e5f85e8284aaca724c372e8f9efdfd9b11943 (patch)
tree337f336b17e93cf184e33c7b71fa89ed923e1428 /css
parent84b69b6b9a7275cdc83ba310dad777e69b8e8fec (diff)
new paused mode feature (closes #144), controls and progress DOM elements are no longer required in HTML
Diffstat (limited to 'css')
-rw-r--r--css/reveal.css38
1 files changed, 33 insertions, 5 deletions
diff --git a/css/reveal.css b/css/reveal.css
index 2f280bc..d493b22 100644
--- a/css/reveal.css
+++ b/css/reveal.css
@@ -410,6 +410,7 @@ body {
margin-top: -320px;
padding: 20px 0px;
overflow: visible;
+ z-index: 1;
text-align: center;
@@ -922,6 +923,33 @@ body {
/*********************************************
+ * PAUSED MODE
+ *********************************************/
+
+.reveal .pause-overlay {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: black;
+ visibility: hidden;
+ opacity: 0;
+ z-index: 100;
+
+ -webkit-transition: all 1s ease;
+ -moz-transition: all 1s ease;
+ -ms-transition: all 1s ease;
+ -o-transition: all 1s ease;
+ transition: all 1s ease;
+}
+.reveal.paused .pause-overlay {
+ visibility: visible;
+ opacity: 1;
+}
+
+
+/*********************************************
* FALLBACK
*********************************************/
@@ -945,10 +973,10 @@ body {
/*********************************************
- * DEFAULT STATES
+ * BACKGROUND STATES
*********************************************/
-.state-background {
+.reveal .state-background {
position: absolute;
width: 100%;
height: 100%;
@@ -960,13 +988,13 @@ body {
-o-transition: background 800ms ease;
transition: background 800ms ease;
}
-.alert .state-background {
+.alert .reveal .state-background {
background: rgba( 200, 50, 30, 0.6 );
}
-.soothe .state-background {
+.soothe .reveal .state-background {
background: rgba( 50, 200, 90, 0.4 );
}
-.blackout .state-background {
+.blackout .reveal .state-background {
background: rgba( 0, 0, 0, 0.6 );
}