tor-browser

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

mix-blend-mode-transformed-ref.html (411B)


      1 <!DOCTYPE HTML>
      2 <head>
      3  <style>
      4    .outer {
      5       transform: scale(0.5) translate(200px, 200px);
      6    }
      7    .parent {
      8       width: 200px;
      9       height: 200px;
     10       isolation: isolate;
     11    }
     12    .child {
     13      width: 200px;
     14      height: 200px;
     15      background: #7775b6;
     16    }
     17  </style>
     18 </head>
     19 <body>
     20 <div class="outer">
     21  <div class="parent">
     22   <div class="child">
     23   </div>
     24  </div>
     25 </div>
     26 </body>