tor-browser

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

scope-imported.css (141B)


      1 .x {
      2  --x: 1;
      3 }
      4 
      5 :scope > .y {
      6  --y: 1;
      7 }
      8 
      9 @scope (.inner-scope) {
     10  .z {
     11    --z: 1;
     12  }
     13 }
     14 
     15 & > .w {
     16  --w: 1;
     17 }
     18 
     19 & > & > .u {
     20  --u: 1;
     21 }