video_iframe.html 774 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{% block title %}{% endblock %}{{ SITENAME }}</title>
  5. <meta charset="utf-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <script type="text/javascript" src="/js/extlib/video-js/video.js"></script>
  8. <link rel="stylesheet" type="text/css" href="/js/extlib/video-js/video-js.css">
  9. <style type="text/css">
  10. body {
  11. margin: 0px;
  12. padding: 0px;}
  13. </style>
  14. <style type="text/css">
  15. .vjs-default-skin .vjs-big-play-button
  16. {
  17. top: 50%;
  18. left: 50%;
  19. margin: -1.5em auto auto -2em;
  20. }
  21. .vjs-play-progress, .vjs-volume-level {
  22. background-color: #86D4B1 !important;
  23. }
  24. </style>
  25. </head>
  26. <body id="index">
  27. {% include "campaign_video.html" %}
  28. </body>
  29. </html>