Full Theater invidious

Maximize the video player without going fullscreen.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

/* ==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;
  }
}