From ab7d4310fc2c8ac45d758b41336d4014fead2bea Mon Sep 17 00:00:00 2001 From: Ashley Date: Wed, 14 Dec 2022 15:16:17 +0000 Subject: [PATCH] new video player!! --- css/poketube.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/css/poketube.css b/css/poketube.css index c11ef55b..34289a85 100644 --- a/css/poketube.css +++ b/css/poketube.css @@ -37,6 +37,11 @@ --div-prim-bg: #1c1c1c; --div-second-bg: #1a1a1a; --div-transparent-bg: #0009; + + /* video player */ + + --video-player-height-max: 720px; + --video-player-width-max: 1280px; } a.class:hover { @@ -312,3 +317,14 @@ a { .video > .thumbnail { border: 1px white solid; } + + + +.video-player-container { + max-width: max-content; + margin: inherit; + max-height: fit-content; + max-height: -moz-fit-content; + + aspect-ratio: inherit; +}