Underscoring partial included files

This commit is contained in:
Raphael Goetter 2014-06-30 21:16:22 +02:00
parent 34a923e2ef
commit a21d58070c
29 changed files with 71 additions and 88 deletions

29
less/_07-flexbox.less Normal file
View file

@ -0,0 +1,29 @@
/* 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;
}