Experimental "future-proof" version of KNACSS
This commit is contained in:
parent
3fa53f9083
commit
f42ad600be
18 changed files with 3777 additions and 0 deletions
30
future-proof/css-includes/07-flexbox.css
Normal file
30
future-proof/css-includes/07-flexbox.css
Normal file
|
@ -0,0 +1,30 @@
|
|||
|
||||
/* 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