1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
| .flex {
| display: flex;
| }
|
| .flex-1 {
| flex: 1;
| }
|
| .flex-2 {
| flex: 2;
| }
|
| .flex-3 {
| flex: 3;
| }
|
| .flex-5 {
| flex: 5;
| }
|
| .flex-8 {
| flex: 8;
| }
|
| .a-i-c {
| align-items: center;
| }
|
| .flex_base {
| display: flex;
| align-items: center;
| justify-content: center;
| }
|
| .j-c-s-a {
| justify-content: space-around;
| }
|
| .j-c-s-b {
| justify-content: space-between;
| }
|
| .j-c-c {
| justify-content: center;
| }
|
| .f-d-c {
| flex-direction: column;
| }
|
| .j-c-f-s {
| justify-content: flex-start;
| }
|
| .j-c-f-e {
| justify-content: flex-end;
| }
|
| .flex-wrap {
| flex-wrap: wrap;
| }
|
|