New examples and new default variable structure

This commit is contained in:
Stephan Hagedorn 2017-08-29 10:50:34 +02:00
parent a8fabf373e
commit 0c4e801690
13 changed files with 455 additions and 259 deletions

View file

@ -147,12 +147,32 @@
.flex {
display: flex;
background-color: rgba($alpha_color, .1);
}
.flex_child {
.flex__wrap {
@extend .flex;
flex-wrap: wrap;
}
.flex__row {
@extend .flex;
flex-direction: column;
// align-items: flex-start;
justify-content: flex-start;
}
.flex__child {
flex: 0 1 auto;
}
.flex__child_one {
flex: 1;
}
.flex__child_end {
align-self: flex-end;
}
// Colors