-
Notifications
You must be signed in to change notification settings - Fork 0
/
box.css
100 lines (94 loc) · 1.23 KB
/
box.css
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
.box > div {
height: 100%;
}
.box.full {
height: 100%;
}
.cen {
display: flex;
justify-content: center;
align-items: center;
}
.cen.full {
height: 100%;
}
.grow {
flex-grow: 1;
}
.shrink {
flex-shrink: 1;
}
.expand {
flex-grow: 99999;
}
.ver {
display: flex;
flex-direction: column;
}
.ver.full {
height: 100%;
}
.ver.top {
justify-content: flex-start;
}
.ver.bottom {
justify-content: flex-end;
}
.ver.center {
align-items: center;
}
.ver.left {
align-items: flex-start;
}
.ver.right {
align-items: flex-start;
}
.ver.middle {
justify-content: center;
}
.ver.space {
justify-content: space-between;
}
.ver.around {
justify-content: space-around;
}
.ver.evenly {
justify-content: space-evenly;
}
.hor {
display: flex;
flex-direction: row;
}
.hor.top {
align-items: flex-start;
}
.hor.bottom {
align-items: flex-end;
}
.hor.center {
align-items: center;
}
.hor.left {
justify-content: flex-start;
}
.hor.right {
justify-content: flex-end;
}
.hor.middle {
justify-content: center;
}
.hor.space {
justify-content: space-between;
}
.hor.around {
justify-content: space-around;
}
.hor.evenly {
justify-content: space-evenly;
}
.hor.wrap {
flex-wrap: wrap;
}
.hor.full {
height: 100%;
}