-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusic.html
34 lines (33 loc) · 971 Bytes
/
music.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
<html>
<head>
<title>Music</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stream Music!</title>
<link rel="manifest" href="manifest.json" />
<link rel="apple-touch-icon" href="music-144x144.png">
<style>
body, html {
overflow: hidden;
}
.row {
margin: 0!important;
}
.main {
display: flex;
flex-direction: column;
height:100%;
}
music-main {
display: flex;
flex-direction: column;
height:100%;
}
</style>
</head>
<body>
<div id="main" class="main"></div>
<div id="injected"></div>
<script src="load/loader.js"></script>
</body>
</html>