1
0
mirror of https://github.com/thangisme/notes.git synced 2026-06-12 20:09:12 -04:00

Initial commit

This commit is contained in:
Patrick Marsceill
2017-03-09 13:16:08 -05:00
commit b7b0d0d7bf
4147 changed files with 401224 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
a {
display: flex;
flex-flow: row;
order: 0;
flex: 0 1 2;
transition: flex 200ms;
}
.inline {
display: inline-flex;
align-self: auto;
align-content: stretch;
flex: auto;
}
.a {
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
flex-wrap: nowrap;
align-content: flex-start;
align-self: flex-start;
flex: none;
}
.b {
flex-direction: row-reverse;
justify-content: flex-end;
align-items: flex-end;
flex-wrap: wrap;
align-content: flex-end;
align-self: flex-end;
flex-shrink: 1;
}
.c {
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: reverse-wrap;
align-content: center;
align-self: center;
flex-basis: auto;
}
.e {
flex-direction: column-reverse;
justify-content: space-between;
align-items: baseline;
align-content: space-between;
align-self: baseline;
}
.f {
justify-content: space-around;
align-items: stretch;
align-content: space-around;
align-self: stretch;
}