KNACSS/sass/07-flexbox.scss

38 lines
405 B
SCSS
Raw Normal View History

2014-05-04 15:48:00 +02:00
@import "00-config";
2014-05-07 11:33:47 +02:00
/* ----------------------------- */
/* ==flexbox layout */
/* ----------------------------- */
/**
* Tutorial: http://knacss.com/demos/tutoriel.html#flex
*/
2014-05-04 15:48:00 +02:00
.flex {
display : flex;
}
2014-05-07 11:33:47 +02:00
2014-05-04 15:48:00 +02:00
.flex-h {
flex-direction: row;
}
2014-05-07 11:33:47 +02:00
2014-05-04 15:48:00 +02:00
.flex-v {
flex-direction: column;
}
2014-05-07 11:33:47 +02:00
2014-05-04 15:48:00 +02:00
.flex-fluid {
flex: 1;
}
2014-05-07 11:33:47 +02:00
2014-05-04 15:48:00 +02:00
.flex-start {
2014-05-07 11:33:47 +02:00
order: -1;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:33:47 +02:00
2014-05-04 15:48:00 +02:00
.flex-mid {
2014-05-07 11:33:47 +02:00
order: 1;
2014-05-04 15:48:00 +02:00
}
2014-05-07 11:33:47 +02:00
2014-05-04 15:48:00 +02:00
.flex-end {
2014-05-07 11:33:47 +02:00
order: 42;
}