Skip to content
Snippets Groups Projects
reveal.css 30 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*********************************************
     * NO TRANSITION
     *********************************************/
    
    .reveal.none .slides section {
    	-webkit-transform: none;
    	   -moz-transform: none;
    	    -ms-transform: none;
    	     -o-transform: none;
    	        transform: none;
    
    	-webkit-transition: none;
    	   -moz-transition: none;
    	    -ms-transition: none;
    	     -o-transition: none;
    	        transition: none;
    }
    
    
    
    /*********************************************
     * OVERVIEW
     *********************************************/
    
    
    	-webkit-perspective: 700px;
    	   -moz-perspective: 700px;
    	    -ms-perspective: 700px;
    	        perspective: 700px;
    }
    
    
    	overflow: hidden;
    
    	opacity: 1!important;
    	visibility: visible!important;
    
    	cursor: pointer;
    	background: rgba(0,0,0,0.1);
    }
    
    .reveal.overview .slides section .fragment {
    
    .reveal.overview .slides section:after,
    .reveal.overview .slides section:before {
    
    .reveal.overview .slides section>section {
    
    	.reveal.overview .slides section:hover {
    
    	.reveal.overview .slides section.present {
    
    		background: rgba(0,0,0,0.3);
    	}
    
    .reveal.overview .slides>section.stack {
    
    /*********************************************
     * 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
     *********************************************/
    
    .no-transforms {
    	overflow-y: auto;
    }
    
    .no-transforms .slides section {
    
    hakimel's avatar
    hakimel committed
    	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;
    }
    
    
    
    	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;
    }
    
    	background: rgba( 200, 50, 30, 0.6 );
    }
    
    	background: rgba( 50, 200, 90, 0.4 );
    }
    
    	background: rgba( 0, 0, 0, 0.6 );
    
    /*********************************************
     * SPEAKER NOTES
     *********************************************/
    
    .reveal aside.notes {
    	display: none;
    }
    
    /*********************************************
     * ZOOM PLUGIN
     *********************************************/
    
    .zoomed .reveal *,
    .zoomed .reveal *:before,
    .zoomed .reveal *:after {
    	-webkit-transform: initial !important;
    	   -moz-transform: initial !important;
    	    -ms-transform: initial !important;
    	        transform: initial !important;
    
    	-webkit-backface-visibility: initial !important;
    	   -moz-backface-visibility: initial !important;
    	    -ms-backface-visibility: initial !important;
    	        backface-visibility: initial !important;
    }
    
    .zoomed .reveal .progress,
    .zoomed .reveal .controls {
    	opacity: 0;
    }
    
    .zoomed .reveal .roll span {
    	background: none;
    }
    
    .zoomed .reveal .roll span:after {
    	visibility: hidden;
    }