tor-browser

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

conic-gradient-rotation-expected.html (416B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title></title>
      5  <style type="text/css">
      6    div {
      7      width: 300px;
      8      height: 150px;
      9      background: conic-gradient(
     10        from 180deg at 100px 50px,
     11        red 0.2turn,
     12        orange 0.2turn 0.4turn,
     13        yellow 0.4turn 0.6turn,
     14        green 0.6turn 0.8turn,
     15        blue 0.8turn 1.0turn
     16      );
     17  </style>
     18 </head>
     19 <body>
     20  <div id="output"></div>
     21 </body>
     22 </html>