box-shadow-border-radii.yaml (1037B)
1 --- 2 root: 3 items: 4 - type: stacking-context 5 bounds: [0, 0, 1000, 1000] 6 items: 7 - type: box-shadow 8 bounds: [ 50, 50, 100, 100 ] 9 color: red 10 clip-mode: outset 11 blur-radius: 10 12 border-radius: { 13 top-left: [20, 30], 14 top-right: [10, 30], 15 bottom-left: [50, 25], 16 bottom-right: [0, 0], 17 } 18 19 - type: box-shadow 20 bounds: [ 200, 50, 100, 100 ] 21 color: green 22 clip-mode: inset 23 blur-radius: 10 24 border-radius: { 25 top-left: [20, 30], 26 top-right: [10, 30], 27 bottom-left: [50, 25], 28 bottom-right: [0, 0], 29 } 30 31 - type: box-shadow 32 bounds: [ 350, 50, 100, 100 ] 33 color: blue 34 clip-mode: outset 35 blur-radius: 10 36 border-radius: [ 10, 20, 30, 40 ]