tor-browser

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

1641769-1-ref.html (479B)


      1 <!DOCTYPE html>
      2 <html lang="en-US">
      3 <head>
      4    <meta charset="UTF-8">
      5 </head>
      6 <body>
      7    <style>
      8    .filter {
      9        filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 1));
     10    }
     11    .child {
     12        box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 1);
     13        background-color: green;
     14        width: 100px;
     15        height: 100px;
     16    }
     17    </style>
     18    <div class="filter">
     19        <div>
     20            <div class="child">
     21            </div>
     22        </div>
     23    </div>
     24 </body>
     25 </html>