summaryrefslogtreecommitdiffstats
path: root/assets/css
diff options
context:
space:
mode:
authorOmar Roth <omarroth@hotmail.com>2018-09-15 12:15:39 -0500
committerOmar Roth <omarroth@hotmail.com>2018-09-15 12:15:39 -0500
commitc74cc1123f01c321da5453dc31c5ba85fd90a95e (patch)
tree6da7680540146b993a2be107cf4b0fd3c6df5986 /assets/css
parent0e1b5d7cdd2a5889fefb968f6d2ef702099b96bd (diff)
downloadinvidious-c74cc1123f01c321da5453dc31c5ba85fd90a95e.tar.gz
invidious-c74cc1123f01c321da5453dc31c5ba85fd90a95e.tar.bz2
invidious-c74cc1123f01c321da5453dc31c5ba85fd90a95e.zip
Maintain aspect ratio even when JS is disabled
Diffstat (limited to 'assets/css')
-rw-r--r--assets/css/default.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/assets/css/default.css b/assets/css/default.css
index 6e807f3c..8e809dea 100644
--- a/assets/css/default.css
+++ b/assets/css/default.css
@@ -201,3 +201,16 @@ div {
background-size: cover;
object-fit: cover;
}
+
+#player {
+ position: absolute;
+ left: 0;
+ top: 0;
+ height: 100%;
+}
+
+#player-container {
+ position: relative;
+ padding-bottom: 56.25%;
+ height: 0;
+}