53 lines
1.0 KiB
HTML
53 lines
1.0 KiB
HTML
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>BBB - HTML5 Client</title>
|
|
<style>
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*, *:before, *:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
body {
|
|
position: absolute;
|
|
height: 100%;
|
|
font-family: 'Source Sans Pro', Arial, sans-serif;
|
|
font-size: 1rem; /* 16px */
|
|
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>
|
|
</head>
|
|
<body style="background-color: #06172A">
|
|
<div id="app" role="document"></div>
|
|
<audio id="remote-media" autoPlay="autoplay">
|
|
<track kind="captions" /> {/* These captions are brought to you by eslint */}
|
|
</audio>
|
|
</body>
|