Advertisement
kyrodes

YouTube Full Theater

Jun 28th, 2023 (edited)
1,394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @-moz-document url-prefix("https://www.youtube.com/watch") {
  2.  
  3. ytd-watch-flexy[theater] #player-full-bleed-container.ytd-watch-flexy,
  4. ytd-watch-flexy[theater] #full-bleed-container.ytd-watch-flexy {
  5.   height: 100vh;
  6.   max-height: none;
  7. }
  8. .ytp-iv-video-content {
  9.     height: 100vh!important;
  10.     width:100vw!important;
  11.     left:0!important;
  12.     top:0!important;
  13. }
  14. #page-manager.ytd-app {
  15.   margin-top: 0;
  16. }
  17. #masthead-container {
  18.   opacity: 0;
  19.   transition:0.5s;
  20. }
  21. #content:hover #masthead-container {
  22.   opacity: 0.75;
  23.   animation: stylus-fadeout 0.5s 3s forwards;
  24. }
  25. @keyframes stylus-fadeout {
  26.   from {opacity: 0.75;}
  27.   to {opacity: 0;}
  28. }
  29. #content:hover #masthead-container:focus-within,
  30. #masthead-container:focus-within {
  31.   opacity: 1!important;
  32. }
  33. #masthead {
  34.   --yt-swatch-primary: rgba(0,0,0,0.5)!important;
  35.   transition: 0.25s;
  36. }
  37. #content:hover #masthead-container:focus-within #masthead,
  38. #masthead-container:focus-within #masthead {
  39.   --yt-swatch-primary: rgb(35,35,35)!important;
  40. }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement