tor-browser

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

mask-mode-ref.html (1246B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>CSS mask-mode reference</title>
      6    <link rel="author" title="Ethan Lin" href="mailto:ethlin@mozilla.com">
      7    <link rel="author" title="Mozilla" href="https://www.mozilla.org">
      8    <style type="text/css">
      9      div {
     10        background-color: white;
     11        position: absolute;
     12        margin: 0px;
     13        padding: 0px;
     14        width: 100px;
     15        height: 100px;
     16        top: 10px;
     17      }
     18 
     19      div.auto {
     20        left: 10px;
     21        background-image: url(support/blue-100x100.svg);
     22      }
     23 
     24      div.alpha {
     25        left: 120px;
     26        background-image: url(support/blue-100x100.svg);
     27      }
     28 
     29      div.luminance1 {
     30        left: 230px;
     31        background-image: url(support/blue-luminance-100x100.svg);
     32      }
     33 
     34      div.luminance2 {
     35        left: 340px;
     36        background-image: url(support/red-luminance-100x100.svg);
     37      }
     38 
     39      div.luminance3 {
     40        left: 450px;
     41        background-image: url(support/green-luminance-100x100.svg);
     42      }
     43    </style>
     44  </head>
     45  <body>
     46    <div class="auto"></div>
     47    <div class="alpha"></div>
     48    <div class="luminance1"></div>
     49    <div class="luminance2"></div>
     50    <div class="luminance3"></div>
     51  </body>
     52 </html>