tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

box-shadow-clip-ref.yaml (1377B)


      1 ---
      2 root:
      3  items:
      4    - type: stacking-context
      5      bounds: [0, 0, 1000, 1000]
      6      items:
      7        - type: clip
      8          id: 2
      9          bounds: [0, 0, 100, 200]
     10        - type: clip-chain
     11          id: 10
     12          clips: [2]
     13        - type: box-shadow
     14          bounds: [ 20, 20, 200, 80 ]
     15          color: blue
     16          offset: [10, 20]
     17          clip-mode: outset
     18          clip-chain: 10
     19 
     20        - type: clip
     21          id: 3
     22          bounds: [200, 0, 100, 200]
     23        - type: clip-chain
     24          id: 11
     25          clips: [3]
     26        - type: box-shadow
     27          bounds: [ 220, 20, 200, 80 ]
     28          color: red
     29          offset: [10, 20]
     30          blur-radius: 10
     31          clip-mode: outset
     32          clip-chain: 11
     33 
     34        - type: clip
     35          id: 4
     36          bounds: [0, 200, 100, 200]
     37        - type: clip-chain
     38          id: 12
     39          clips: [4]
     40        - type: box-shadow
     41          bounds: [ 20, 220, 200, 80 ]
     42          color: green
     43          offset: [10, 20]
     44          clip-mode: inset
     45          clip-chain: 12
     46 
     47        - type: clip
     48          id: 5
     49          bounds: [200, 200, 100, 200]
     50        - type: clip-chain
     51          id: 13
     52          clips: [5]
     53        - type: box-shadow
     54          bounds: [ 220, 220, 200, 80 ]
     55          color: yellow
     56          offset: [10, 20]
     57          blur-radius: 10
     58          clip-mode: inset
     59          clip-chain: 13