This commit is contained in:
Raphael Goetter 2014-01-31 15:30:55 +01:00
parent f817dbfd7d
commit 8e3c6aa61e
27 changed files with 3469 additions and 967 deletions

71
css/07-flexbox.css Normal file
View file

@ -0,0 +1,71 @@
/* flexbox layout
Tutorial: http://knacss.com/demos/tutoriel.html#flex */
.flex {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
.flex-h {
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
-webkit-box-direction: normal;
-moz-box-direction: normal;
flex-direction: row;
}
.flex-v {
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
-webkit-flex-direction: column;
-ms-flex-direction: column;
-webkit-box-direction: normal;
-moz-box-direction: normal;
flex-direction: column;
}
.flex-fluid {
-moz-box-flex: 1;
-webkit-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
-webkit-box-flex: 1;
flex: 1;
}
.flex-start {
-webkit-box-ordinal-group: -1;
-moz-box-ordinal-group: 0;
-ms-flex-order: -1;
-webkit-order: -1;
-moz-order: -1;
-webkit-box-ordinal-group: 0;
order: -1;
}
.flex-mid {
-webkit-box-ordinal-group: 1;
-moz-box-ordinal-group: 1;
-ms-flex-order: 1;
-webkit-order: 1;
-moz-order: 1;
-webkit-box-ordinal-group: 2;
-moz-box-ordinal-group: 2;
order: 1;
}
.flex-end {
-webkit-box-ordinal-group: 42;
-moz-box-ordinal-group: 42;
-ms-flex-order: 42;
-webkit-order: 42;
-moz-order: 42;
-webkit-box-ordinal-group: 43;
-moz-box-ordinal-group: 43;
order: 42;
}