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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
use crate::ext::*;
constant!(basis auto);
size_0_to_96!(basis);
fraction_2_to_6!(basis);
fraction_12!(basis);
constant!(basis full);
constant!(flex row);
constant!(flex row reverse);
constant!(flex col);
constant!(flex col reverse);
constant!(flex wrap);
constant!(flex wrap reverse);
constant!(flex nowrap);
constant!(flex 1);
constant!(flex auto);
constant!(flex initial);
constant!(flex none);
any!(flex);
constant!(grow);
constant!(grow 0);
any!(grow);
constant!(shrink);
constant!(shrink 0);
any!(shrink);
_1_to_12!(order);
constant!(order first);
constant!(order last);
constant!(order none);
any!(order);
_1_to_12!(grid cols);
constant!(grid cols none);
any!(grid cols);
constant!(col auto);
_1_to_12!(col span);
constant!(col span full);
_1_to_12!(col start);
constant!(col start auto);
_1_to_12!(col end);
constant!(col end auto);
any!(col);
any!(col start);
any!(col end);
_1_to_6!(grid rows);
constant!(grid rows none);
any!(grid rows);
constant!(row auto);
_1_to_6!(row span);
constant!(row span full);
_1_to_6!(row start);
constant!(row start 7);
constant!(row start auto);
_1_to_6!(row end);
constant!(row end 7);
constant!(row end auto);
any!(row);
any!(row start);
any!(row end);
constant!(grid flow row);
constant!(grid flow col);
constant!(grid flow dense);
constant!(grid flow row dense);
constant!(grid flow col dense);
constant!(auto cols auto);
constant!(auto cols min);
constant!(auto cols max);
constant!(auto cols fr);
any!(auto cols);
constant!(auto rows auto);
constant!(auto rows min);
constant!(auto rows max);
constant!(auto rows fr);
any!(auto rows);
size_0_to_96!(gap);
size_0_to_96!(gap x);
size_0_to_96!(gap y);
constant!(justify start);
constant!(justify end);
constant!(justify center);
constant!(justify between);
constant!(justify around);
constant!(justify evenly);
constant!(justify items start);
constant!(justify items end);
constant!(justify items center);
constant!(justify items stretch);
constant!(justify self auto);
constant!(justify self start);
constant!(justify self end);
constant!(justify self center);
constant!(justify self stretch);
constant!(content start);
constant!(content end);
constant!(content center);
constant!(content between);
constant!(content around);
constant!(content evenly);
constant!(content baseline);
constant!(items start);
constant!(items end);
constant!(items center);
constant!(items baseline);
constant!(items stretch);
constant!(self auto);
constant!(self start);
constant!(self end);
constant!(self center);
constant!(self baseline);
constant!(self stretch);
constant!(place content start);
constant!(place content end);
constant!(place content center);
constant!(place content between);
constant!(place content around);
constant!(place content evenly);
constant!(place content baseline);
constant!(place content stretch);
constant!(place items start);
constant!(place items end);
constant!(place items center);
constant!(place items baseline);
constant!(place items stretch);
constant!(place self auto);
constant!(place self start);
constant!(place self end);
constant!(place self center);
constant!(place self stretch);