snapshot-shadow-ref.yaml (1802B)
1 --- 2 root: 3 items: 4 - type: stacking-context 5 bounds: [10, 10, 200, 200] 6 filters: drop-shadow([0, 0], 10, black) 7 items: 8 - type: rect 9 bounds: [10, 10, 80, 80] 10 color: [0, 150, 0] 11 - type: rect 12 bounds: [5, 5, 40, 40] 13 color: [200, 0, 0] 14 15 - type: stacking-context 16 bounds: [110, 10, 200, 200] 17 filters: drop-shadow([5, 5], 0, red) 18 items: 19 - type: rect 20 bounds: [10, 10, 80, 80] 21 color: [0, 150, 0] 22 - type: rect 23 bounds: [5, 5, 40, 40] 24 color: [200, 0, 0] 25 26 - type: stacking-context 27 bounds: [210, 10, 200, 200] 28 filters: 29 - drop-shadow([4, 4], 4, red) 30 - drop-shadow([6, 6], 4, green) 31 - drop-shadow([8, 8], 4, blue) 32 items: 33 - type: rect 34 bounds: [10, 10, 80, 80] 35 color: [0, 150, 0] 36 - type: rect 37 bounds: [5, 5, 40, 40] 38 color: [200, 0, 0] 39 40 41 42 43 - type: stacking-context 44 bounds: [10, 110, 200, 200] 45 filters: drop-shadow([0, 0], 10, black) 46 items: 47 - type: rect 48 bounds: [10, 10, 80, 80] 49 color: [0, 150, 0] 50 - type: rect 51 bounds: [5, 5, 40, 40] 52 color: [200, 0, 0] 53 54 - type: stacking-context 55 bounds: [110, 110, 200, 200] 56 filters: drop-shadow([5, 5], 0, red) 57 items: 58 - type: rect 59 bounds: [10, 10, 80, 80] 60 color: [0, 150, 0] 61 - type: rect 62 bounds: [5, 5, 40, 40] 63 color: [200, 0, 0] 64 65 - type: stacking-context 66 bounds: [210, 110, 200, 200] 67 filters: 68 - drop-shadow([4, 4], 4, red) 69 - drop-shadow([6, 6], 4, green) 70 - drop-shadow([8, 8], 4, blue) 71 items: 72 - type: rect 73 bounds: [10, 10, 80, 80] 74 color: [0, 150, 0] 75 - type: rect 76 bounds: [5, 5, 40, 40] 77 color: [200, 0, 0]