tor-browser

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

mix-blend-mode-soft-light.html (413B)


      1 <!DOCTYPE HTML>
      2 <head>
      3  <style>
      4    .parent {
      5       width: 200px;
      6       height: 200px;
      7       isolation: isolate;
      8       background: #5856a2;
      9    }
     10    .child {
     11      width: 200px;
     12      height: 200px;
     13      mix-blend-mode: soft-light;
     14      opacity: 0.5;
     15      background: white;
     16      will-change: opacity;
     17    }
     18  </style>
     19 </head>
     20 <body>
     21 <div class="parent">
     22  <div class="child">
     23  </div>
     24 </div>
     25 </body>