Browse Source

basic flexbox styles

Hakim El Hattab 11 years ago
parent
commit
54195e3c6b
4 changed files with 32 additions and 1 deletions
  1. 29 0
      css/reveal.css
  2. 0 0
      css/reveal.min.css
  3. 2 0
      js/reveal.js
  4. 1 1
      js/reveal.min.js

+ 29 - 0
css/reveal.css

@@ -621,6 +621,35 @@ body {
 	display: block;
 }
 
+.reveal .slides section:not(.stack) {
+	display: -webkit-box;
+	display: -webkit-flex;
+	display: -moz-box;
+	display: -moz-flex;
+	display: -ms-flexbox;
+	display: flex;
+
+	-webkit-box-direction: normal;
+	-webkit-box-orient: vertical;
+
+	-webkit-flex-direction: column;
+	   -moz-flex-direction: column;
+	    -ms-flex-direction: column;
+	        flex-direction: column;
+
+	-webkit-box-align: center;
+	   -ms-flex-align: center;
+	-webkit-align-items: center;
+	   -moz-align-items: center;
+	        align-items: center;
+
+	-webkit-box-pack: center;
+	   -ms-flex-pack: center;
+	-webkit-justify-content: center;
+	   -moz-justify-content: center;
+	        justify-content: center;
+}
+
 /* Global transition speed settings */
 .reveal[data-transition-speed="fast"] .slides section {
 	-webkit-transition-duration: 400ms;

File diff suppressed because it is too large
+ 0 - 0
css/reveal.min.css


+ 2 - 0
js/reveal.js

@@ -1132,6 +1132,7 @@ var Reveal = (function(){
 					continue;
 				}
 
+				/*
 				if( config.center || slide.classList.contains( 'center' ) ) {
 					// Vertical stacks are not centred since their section
 					// children will be
@@ -1145,6 +1146,7 @@ var Reveal = (function(){
 				else {
 					slide.style.top = '';
 				}
+				*/
 
 			}
 

File diff suppressed because it is too large
+ 1 - 1
js/reveal.min.js


Some files were not shown because too many files changed in this diff