BoxTitoli_Mysql/templates/streaming.html

29 lines
699 B
HTML
Raw Permalink Normal View History

2020-05-22 12:05:33 +00:00
{% extends "base.html" %}
{% block title %} GUARDA IN STREAMING {{ streaming.titolo }} {% endblock title %}
{% block css %}
<style>
.rectangle {
width:70%;
height:70%;
background-color: black;
border: 3px solid red;
position: absolute;
top: 15%;
left: 15%;
}
.rectangle>iframe {
display:block;
width:100%;
height:100%;
}
</style>
{% endblock css %}
{% block content %}
<body background="https://i.ibb.co/vzXbD3H/lrFfdA1.jpg">
<div class="rectangle">
<iframe src='{{ streaming.link_embedded }}' scrolling="no" frameborder="0" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true"></iframe>
</div>
</body>
{% endblock content %}