-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
71 lines (66 loc) · 1.51 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>Streaming Video </title>
<style>
html,
body {
margin: 0;
padding: 0;
font-family: sans-serif;
background: #1777c1;
}
.container {
max-width: 700px;
margin: 0 auto;
}
.inner {
padding: 15px;
background: #fff;
float: right;
width: 100%;
margin: 20px 0;
box-shadow: 0px 2px 4px 1px #0000007d;
position: relative;
}
#video-container{
overflow: hidden;
}
#video {
float: right;
width: 100%;
min-height: 200px;
background: #222;
height: auto;
margin-top: -40px;
}
big{
font-size: 150%;
position: relative;
top: 7px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div class="inner">
<div id="video-container">
<img id="video" src="/video">
</div>
<div id="weather">
<p style="
position: absolute;
top: 10px;
left: 30px;
color: red;
font-weight: bold;
font-size: 20px; ">
<big>•</big> Live
</p>
<div></div>
</div>
</div>
</div>
</body>
</html>