Sass version !

This commit is contained in:
Raphael Goetter 2014-05-04 15:48:00 +02:00
parent d0add0508c
commit c2ee11f407
16 changed files with 1404 additions and 1 deletions

24
sass/07-flexbox.scss Normal file
View file

@ -0,0 +1,24 @@
@import "00-config";
/* flexbox layout
Tutorial: http://knacss.com/demos/tutoriel.html#flex */
.flex {
display : flex;
}
.flex-h {
flex-direction: row;
}
.flex-v {
flex-direction: column;
}
.flex-fluid {
flex: 1;
}
.flex-start {
order : -1;
}
.flex-mid {
order : 1;
}
.flex-end {
order : 42;
}