Sass version !
This commit is contained in:
parent
d0add0508c
commit
c2ee11f407
16 changed files with 1404 additions and 1 deletions
24
sass/07-flexbox.scss
Normal file
24
sass/07-flexbox.scss
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue