tor-browser

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

gradient-button-ref.html (398B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Big button with gradient (without padding)</title>
      4 <style>
      5    #button {
      6        width: calc(300px + 2 * 30px);
      7        height: calc(80px + 2 * 20px);
      8        background: linear-gradient(blue, green);
      9        border-width: 5px;
     10        border-style: solid;
     11        border-color: red;
     12        border-radius: 10px;
     13    }
     14 </style>
     15 <div id="button"></div>