tor-browser

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

iframe-passthrough.css (457B)


      1 html {
      2  height: 100%;
      3 
      4  border: none;
      5  /*
      6  border-left-style: solid;
      7  border-left-color: blue;
      8  border-left-width: 4px;
      9  */
     10 }
     11 
     12 body {
     13  margin: 0;
     14  min-height: 100%;
     15 
     16  display: flex;
     17  flex-flow: column;
     18 
     19  border: none;
     20  /*
     21  border-left-style: solid;
     22  border-left-color: green;
     23  border-left-width: 4px;
     24  */
     25 }
     26 
     27 iframe {
     28  flex: auto;
     29 
     30  border: none;
     31  /*
     32  border-left-style: solid;
     33  border-left-color: red;
     34  border-left-width: 4px;
     35  */
     36 }