tor-browser

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

gradient-button.html (520B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Gradients with padding</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-images-3/#gradients">
      5 <meta name="assert" content="gradients cover element padding">
      6 <link rel="match" href="gradient-button-ref.html">
      7 <style>
      8 #button {
      9    width: 300px;
     10    height: 80px;
     11    padding: 20px 30px;
     12    background: linear-gradient(blue, green);
     13    border-width: 5px;
     14    border-style: solid;
     15    border-color: red;
     16    border-radius: 10px;
     17 }
     18 </style>
     19 <div id="button"></div>