Underscoring partial included files
This commit is contained in:
parent
34a923e2ef
commit
a21d58070c
29 changed files with 71 additions and 88 deletions
29
less/_07-flexbox.less
Normal file
29
less/_07-flexbox.less
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue