tor-browser

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

vtt_reflow_display.css (536B)


      1 body {
      2  display: flex;
      3  flex-direction: column;
      4  align-items: center;
      5  max-height: 100%;
      6  width: 100vw;
      7  height: 100vh;
      8 }
      9 .video-player {
     10  display: flex;
     11  max-height: calc(100% - 400px);
     12  flex: 1 1 0;
     13  flex-direction: column;
     14  position: relative;
     15  max-width: 100%;
     16  height: 0;
     17 }
     18 .video-layer {
     19  position: relative;
     20  display: flex;
     21  flex-direction: column;
     22  width: 100%;
     23  height: 100%;
     24  flex: 1 1 0;
     25 }
     26 video {
     27  object-fit: contain;
     28  display: flex;
     29  flex: auto;
     30  max-width: 100%;
     31  min-height: 0;
     32  min-width: 0;
     33 }