Full Theater invidious

Maximize the video player without going fullscreen.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

/* ==UserStyle==
@name          Full Theater invidious
@description   Maximize the video player without going fullscreen.
@author        nullgemm
@version       0.1.1
@namespace     https://greatest.deepsurf.us/en/users/322108-nullgemm
@license       WTFPL
==/UserStyle== */

@-moz-document regexp("https://invidio\\.?us.*") {
.pure-u-md-2-24
  {
    width: 0;
  }

  .pure-u-md-20-24
  {
    width: 100%;
  }

  .navbar
  {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1em;
    z-index: 2;
    opacity: 0;
    background-color: rgba(35, 35, 35, 1);
    box-shadow: 0 0 10px #000;
  }

  .pure-u-md-4-24,
.pure-u-md-12-24,
.pure-u-md-8-24
  {
    opacity: 0;
    transition: opacity 0.05s linear 0.05s;
  }

  .navbar:hover .pure-u-md-4-24,
.navbar:hover .pure-u-md-12-24,
.navbar:hover .pure-u-md-8-24
  {
    opacity: 1;
  }

  .navbar:hover
  {
    opacity: 1;
  }

  #player-container
  {
    padding-bottom: 100vh;
    padding-left: 0;
    padding-right: 0;
  }

  .player-dimensions.vjs-fluid
  {
    padding-top: 100vh;
  }

  .vjs-big-play-button
  {
    top: calc(50% - 45px / 2) !important;
    left: calc(50% - 90px / 2) !important;
  }
}