diff options
author | MaZderMind | 2016-12-29 02:25:12 +0100 |
---|---|---|
committer | MaZderMind | 2016-12-29 02:25:12 +0100 |
commit | ca2b184b87dba5c0f382332116b277d5ed156878 (patch) | |
tree | 875779cd89f8db3905cbec76142e6a6e2431ab06 /assets | |
parent | 14cd8a861efe666ab1d8fab44327b38a67fbd162 (diff) |
correct video-size to 1920
Diffstat (limited to '')
-rw-r--r-- | assets/css/_relive.less | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/assets/css/_relive.less b/assets/css/_relive.less index 512c3cd..09d54ad 100644 --- a/assets/css/_relive.less +++ b/assets/css/_relive.less @@ -28,13 +28,20 @@ body.relive { body.relive-player { .player-wrap { - padding: 50px 0; + padding: 0; border: 1px solid #ddd; - border-radius: @border-radius-large; - margin-bottom: 25px; .video-wrap { margin: 0 auto; + + > [data-player] { + // force 16:9 aspect ratio + // https://gordonlesti.com/bootstrap-responsive-embed-aspect-ratio/ + padding-bottom: 56.25%; + + width: auto !important; + height: auto !important; + } } } |