2016-04-29 03:02:51 +08:00
|
|
|
<head>
|
2018-06-28 22:28:28 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
2017-03-13 22:38:32 +08:00
|
|
|
<style>
|
|
|
|
html {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
*, *:before, *:after {
|
|
|
|
box-sizing: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2018-12-17 17:16:08 +08:00
|
|
|
position: fixed;
|
2017-11-03 05:42:34 +08:00
|
|
|
height: 100%;
|
2017-03-13 22:38:32 +08:00
|
|
|
font-family: 'Source Sans Pro', Arial, sans-serif;
|
|
|
|
font-size: 1rem; /* 16px */
|
2017-07-18 19:51:29 +08:00
|
|
|
background-color: #06172A;
|
2017-03-13 22:38:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
2017-11-03 05:42:34 +08:00
|
|
|
height: 100%;
|
2017-03-13 22:38:32 +08:00
|
|
|
width: 100vw;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sr-only {
|
|
|
|
position: absolute;
|
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
padding: 0;
|
|
|
|
margin: -1px;
|
|
|
|
overflow: hidden;
|
|
|
|
clip: rect(0,0,0,0);
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
[hidden]:not([hidden="false"]) {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
</style>
|
2018-09-12 22:36:04 +08:00
|
|
|
<script>
|
|
|
|
document.addEventListener('gesturestart', function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
});
|
|
|
|
</script>
|
2016-04-29 03:02:51 +08:00
|
|
|
</head>
|
2017-07-18 19:51:29 +08:00
|
|
|
<body style="background-color: #06172A">
|
2017-03-15 22:28:19 +08:00
|
|
|
<div id="app" role="document"></div>
|
2017-12-14 00:32:36 +08:00
|
|
|
<audio id="remote-media" autoPlay="autoplay">
|
2018-01-10 03:52:49 +08:00
|
|
|
<track kind="captions" /> {/* These captions are brought to you by eslint */}
|
2017-12-14 00:32:36 +08:00
|
|
|
</audio>
|
2016-04-29 03:02:51 +08:00
|
|
|
</body>
|