tor-browser

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

fieldset-vertical.css (592B)


      1 body > div { display: inline-block }
      2 fieldset, .fieldset { padding: 0; height:10em; width:2em; border:1em groove; margin: 0em; line-height:1 }
      3 legend, .legend { padding: 0; width: 1em }
      4 .legend {
      5  background: white; /* overlap the border to emulate the border not being painted */
      6  display: table; /* shrink-wrap */
      7 }
      8 
      9 [style="writing-mode: vertical-lr"] .legend {
     10  margin-left: -1em;
     11 }
     12 [style="writing-mode: vertical-rl"] .legend {
     13  margin-right: -1em;
     14 }
     15 .top { margin-bottom: auto }
     16 .center { margin-top: auto; margin-bottom: auto }
     17 .bottom { margin-top: auto }
     18 .rtl { direction: rtl }