diff --git a/app/settings.py b/app/settings.py old mode 100644 new mode 100755 index c2c6edd..25a6554 --- a/app/settings.py +++ b/app/settings.py @@ -22,7 +22,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = ['*'] # Application definition diff --git a/app/static/css/partials/_film.scss b/app/static/css/partials/_film.scss index 4fb2e5a..483c7e1 100755 --- a/app/static/css/partials/_film.scss +++ b/app/static/css/partials/_film.scss @@ -106,6 +106,7 @@ main > .film { margin-right: auto; padding: 20px; font-size: 18px; + z-index: 200; a { color: #ee0; @@ -113,6 +114,11 @@ main > .film { font-weight: 700; } } + + .bio-block, .play, .summary-block, .texts { + position: relative; + } + } .summary-block { @@ -129,22 +135,26 @@ main > .film { .video-block { height: 100vh; - //padding-bottom: 50px; - //padding-top: 50px; - video { + video, .video-fallback-block { position: fixed; top: 0; left: 0; right: 0; - z-index: -9999; height: 100vh; width: 100vw; object-fit: fill; - //height: 100vh; - //width: auto; margin: 0 auto; } + + video { + z-index: 100; + } + + .video-fallback-block { + z-index: 90; + } + } .icon-play { diff --git a/app/templates/film.html b/app/templates/film.html index d9b6d7d..af7f676 100755 --- a/app/templates/film.html +++ b/app/templates/film.html @@ -32,7 +32,8 @@ body { -