tor-browser

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

boxshadow-large-border-radius-ref.html (643B)


      1 <html>
      2 <head>
      3 <style>
      4  #leftCover {
      5    width: 30px;
      6    height: 50px;
      7    background-color: white;
      8    position: absolute;
      9    left: 0px;
     10    top: 0px;
     11  }
     12 
     13  #rightCover {
     14    width: 20px;
     15    height: 120px;
     16    background-color: white;
     17    position: absolute;
     18    top: 0px;
     19    left: 150px;
     20  }
     21 
     22  #boxShadowRegular {
     23    width: 152px;
     24    height: 19.5px;
     25    box-shadow: 0px 0px 1px #3b99FC inset,
     26                0px 0px 4px 1px #3B99FC,
     27                0px 0px 1.5px 1px #3B99FC;
     28    position: absolute;
     29  }
     30 
     31 </style>
     32 </head>
     33 <html>
     34  <div id="boxShadowRegular"></div>
     35  <div id="leftCover"></div>
     36  <div id="rightCover"></div>
     37 </html>