...
1vars: {
2 grid: {
3 grid-rows: 2
4 grid-columns: 5
5 a
6 b
7 c
8 d
9 e
10 f
11 g
12 h
13 i
14 j
15 grid-gap: 0
16 }
17}
18direction: down
19
20**.blank*: {
21 label: ""
22 style: {
23 stroke: transparent
24 fill: transparent
25 }
26}
27blank*: {
28 label: ""
29 style: {
30 stroke: transparent
31 fill: transparent
32 }
33}
34
35blank_ot -> blank_t -> blank_c -> blank_b -> blank_ob
36
37blank_ot: {
38 blank1
39 OutsideTopLeft: {
40 label.near: outside-top-left
41 ...${grid}
42 }
43
44 OutsideTopCenter: {
45 label.near: outside-top-center
46 ...${grid}
47 }
48
49 OutsideTopRight: {
50 label.near: outside-top-right
51 ...${grid}
52 }
53 blank2
54}
55
56blank_t: {
57 OutsideLeftTop: {
58 label.near: outside-left-top
59 ...${grid}
60 }
61
62 TopLeft: {
63 label.near: top-left
64 ...${grid}
65 }
66
67 TopCenter: {
68 label.near: top-center
69 ...${grid}
70 }
71
72 TopRight: {
73 label.near: top-right
74 ...${grid}
75 }
76
77 OutsideRightTop: {
78 label.near: outside-right-top
79 ...${grid}
80 }
81}
82
83blank_c: {
84 OutsideLeftCenter: {
85 label.near: outside-left-center
86 ...${grid}
87 }
88
89 CenterLeft: {
90 label.near: center-left
91 ...${grid}
92 }
93
94 CenterCenter: {
95 label.near: center-center
96 ...${grid}
97 }
98
99 CenterRight: {
100 label.near: center-right
101 ...${grid}
102 }
103
104 OutsideRightCenter: {
105 label.near: outside-right-center
106 ...${grid}
107 }
108}
109
110blank_b: {
111 OutsideLeftBottom: {
112 label.near: outside-left-bottom
113 ...${grid}
114 }
115
116 BottomLeft: {
117 label.near: bottom-left
118 ...${grid}
119 }
120
121 BottomCenter: {
122 label.near: bottom-center
123 ...${grid}
124 }
125
126 BottomRight: {
127 label.near: bottom-right
128 ...${grid}
129 }
130
131 OutsideRightBottom: {
132 label.near: outside-right-bottom
133 ...${grid}
134 }
135}
136
137blank_ob: {
138 blank3
139 OutsideBottomLeft: {
140 label.near: outside-bottom-left
141 ...${grid}
142 }
143
144 OutsideBottomCenter: {
145 label.near: outside-bottom-center
146 ...${grid}
147 }
148
149 OutsideBottomRight: {
150 label.near: outside-bottom-right
151 ...${grid}
152 }
153 blank4
154}
View as plain text