-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathindex.html
53 lines (53 loc) · 956 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
html, body, #main {
margin: 0;
height: 100%;
}
.container {
display: flex;
flex-direction: column;
height: 100%;
}
.player {
flex: 1;
min-height: 0;
}
.controls {
display: flex;
height: 40px;
}
.control {
width: 50px;
height: 40px;
font-size: 23px;
border: none;
outline: none;
cursor: pointer;
background: #fff;
margin-right: 5px;
}
.control:last-child {
margin: 0 0 0 5px;
}
.control:hover {
background: #e3ddd8;
}
.seek {
flex: 1;
height: 40px;
margin: 0;
cursor: pointer;
outline: none;
}
</style>
</head>
<body>
<div id="main"></div>
<script src="../node_modules/babel-standalone/babel.js"></script>
<script type="text/babel" src="renderer.js"></script>
</body>
</html>