tor-browser

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

boxshadow-border-radius-int-ref.html (462B)


      1 <html>
      2 <style>
      3 #boxShadow {
      4  height: 210px;
      5  width: 290px;
      6  box-shadow: 0px 0px 2px graytext inset;
      7 }
      8 
      9 #leftCover {
     10  width: 30px;
     11  height: 300px;
     12  background-color: white;
     13  position: absolute;
     14  left: 0px;
     15  top: 0px;
     16 }
     17 
     18 #rightCover {
     19  width: 20px;
     20  height: 300px;
     21  background-color: white;
     22  position: absolute;
     23  top: 0px;
     24  left: 280px;
     25 }
     26 </style>
     27 <body>
     28 <div id="boxShadow">test</div>
     29 <div id="leftCover"></div>
     30 <div id="rightCover"></div>
     31 </body>