diff options
Diffstat (limited to 'bskyweb/static/iframe')
-rw-r--r-- | bskyweb/static/iframe/youtube.html | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/bskyweb/static/iframe/youtube.html b/bskyweb/static/iframe/youtube.html index f2ada2ec5..4b74d6fcd 100644 --- a/bskyweb/static/iframe/youtube.html +++ b/bskyweb/static/iframe/youtube.html @@ -5,16 +5,14 @@ } .container { position: relative; - width: 100%; - height: 0; - padding-bottom: 56.25%; + overflow: hidden; + width: 100vw; + height: 100vh; } .video { position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; + width: 100vw; + height: 100vh; } </style> <div class="container"><div class="video" id="player"></div></div> |