tor-browser

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

doc_variables_3.html (334B)


      1 <!-- Any copyright is dedicated to the Public Domain.
      2     http://creativecommons.org/publicdomain/zero/1.0/ -->
      3 <html style="--COLOR: green; --background: black">
      4 <head>
      5 
      6  <style>
      7    div {
      8      background: var(--background);
      9      color: var(--COLOR);
     10    }
     11  </style>
     12 </head>
     13 <body>
     14  <div id="target">test</div>
     15 </body>
     16 </html>