tor-browser

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

boxshadow-large-border-radius.html (672B)


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