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
|
---
root:
items:
- type: stacking-context
bounds: [0, 0, 1000, 1000]
items:
- type: border
bounds: [ 10, 10, 200, 200 ]
width: 10
border-type: normal
style: [ solid, double, solid, double ]
color: [ red, green, blue, black ]
radius: 16
- type: border
bounds: [ 230, 10, 200, 200 ]
width: 16
border-type: normal
style: [ solid, double, solid, double ]
color: [ red, green, blue, black ]
- type: border
bounds: [ 450, 10, 200, 200 ]
width: 10
border-type: normal
style: [ solid, double, solid, double ]
color: [ red, green, blue, black ]
radius: {
top-left: [32, 48],
top-right: [64, 32],
bottom-left: [10, 40],
bottom-right: [48, 48],
}
- type: border
bounds: [ 10, 230, 200, 200 ]
width: 24
border-type: normal
style: [ inset, double, ridge, groove ]
color: [ red, green, blue, black ]
radius: 16
- type: border
bounds: [ 230, 230, 200, 200 ]
width: 32
border-type: normal
style: [ outset, double, ridge, groove ]
color: [ red, green, blue, black ]
- type: border
bounds: [ 450, 230, 200, 200 ]
width: 18
border-type: normal
style: [ outset, double, ridge, groove ]
color: [ red, green, blue, black ]
radius: {
top-left: [32, 48],
top-right: [64, 32],
bottom-left: [10, 40],
bottom-right: [48, 48],
}
|