Newer
Older

Hakim El Hattab
committed
transition: all 1s ease;
}
.reveal.paused .pause-overlay {
visibility: visible;
opacity: 1;
}
/*********************************************
* FALLBACK
*********************************************/
.no-transforms {
overflow-y: auto;
}
.no-transforms .slides section {
display: block!important;
opacity: 1!important;
position: relative!important;
height: auto;
min-height: auto;
margin-bottom: 100px;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
transform: none;
}

Hakim El Hattab
committed
/*********************************************

Hakim El Hattab
committed
* BACKGROUND STATES

Hakim El Hattab
committed
*********************************************/

Hakim El Hattab
committed
.reveal .state-background {
position: absolute;
width: 100%;
height: 100%;
background: rgba( 0, 0, 0, 0 );
-webkit-transition: background 800ms ease;
-moz-transition: background 800ms ease;
-ms-transition: background 800ms ease;
-o-transition: background 800ms ease;
transition: background 800ms ease;
}

Hakim El Hattab
committed
.alert .reveal .state-background {
background: rgba( 200, 50, 30, 0.6 );
}

Hakim El Hattab
committed
.soothe .reveal .state-background {
background: rgba( 50, 200, 90, 0.4 );
}

Hakim El Hattab
committed
.blackout .reveal .state-background {

Hakim El Hattab
committed
}

Hakim El Hattab
committed
/*********************************************
* SPEAKER NOTES
*********************************************/
.reveal aside.notes {
display: none;
}

Hakim El Hattab
committed