bigbluebutton-Github/bigbluebutton-html5/client/main.html

57 lines
1.1 KiB
HTML
Raw Normal View History

2016-04-29 03:02:51 +08:00
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<style>
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
2018-12-17 17:16:08 +08:00
position: fixed;
height: 100%;
font-family: 'Source Sans Pro', Arial, sans-serif;
font-size: 1rem; /* 16px */
2017-07-18 19:51:29 +08:00
background-color: #06172A;
}
a {
color: inherit;
}
#app {
height: 100%;
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>
<audio id="remote-media" autoPlay="autoplay">
<track kind="captions" /> {/* These captions are brought to you by eslint */}
</audio>
2016-04-29 03:02:51 +08:00
</body>