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

153 lines
4.7 KiB
HTML
Raw Normal View History

<!--
BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
Copyright (c) 2019 BigBlueButton Inc. and by respective authors (see below).
This program is free software; you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free Software
Foundation; either version 3.0 of the License, or (at your option) any later
version.
BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along
with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
-->
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;
}
2021-12-16 05:35:36 +08:00
/* language-specific font */
body.lang-fa {
font-family: Tahoma, 'Source Sans Pro', Arial, sans-serif;
}
:-webkit-full-screen {
background-color: inherit;
}
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;
}
.set-z-index {
z-index: 15;
width: 100% !important;
height: 100% !important;
}
.remove-z-index {
z-index: 0;
}
/* .full-screen {
height: 100% !important;
width: 100% !important;
transform: translateX(0) translateY(0) translateZ(0) !important;
} */
[hidden]:not([hidden="false"]) {
display: none !important;
}
::-webkit-input-placeholder {
color: var(--palette-placeholder-text);
opacity: 1;
}
:-moz-placeholder, /* Firefox 4 to 18 */
::-moz-placeholder { /* Firefox 19+ */
color: var(--palette-placeholder-text);
opacity: 1;
}
2023-01-13 20:35:20 +08:00
main {
display: initial;
}
.overrideSelect {
background-color: #FFF !important;
color: #000 !important;
}
.select {
background-color: rgba(66, 133, 244, 1) !important;
color: #FFF !important;
}
</style>
2018-09-12 22:36:04 +08:00
<script>
document.addEventListener('gesturestart', function (e) {
2019-03-26 05:38:41 +08:00
e.preventDefault();
});
2018-09-12 22:36:04 +08:00
</script>
2019-04-25 06:03:38 +08:00
<script src="compatibility/sip.js?v=VERSION" language="javascript"></script>
<script src="compatibility/tflite-simd.js?v=VERSION" language="javascript"></script>
<script src="compatibility/tflite.js?v=VERSION" language="javascript"></script>
2021-06-09 22:29:55 +08:00
<!-- fonts -->
2022-06-21 21:52:40 +08:00
<link rel="preload" href="fonts/BbbIcons/bbb-icons.woff2?v=VERSION" as="font" type="font/woff2" crossorigin="anonymous"/>
2022-01-19 22:33:14 +08:00
<link rel="preload" href="fonts/SourceSansPro/SourceSansPro-Light.woff?v=VERSION" as="font" crossorigin="anonymous"/>
<link rel="preload" href="fonts/SourceSansPro/SourceSansPro-Regular.woff?v=VERSION" as="font" crossorigin="anonymous"/>
<link rel="preload" href="fonts/SourceSansPro/SourceSansPro-Semibold.woff?v=VERSION" as="font" crossorigin="anonymous"/>
<link rel="preload" href="fonts/SourceSansPro/SourceSansPro-Bold.woff?v=VERSION" as="font" crossorigin="anonymous"/>
<link rel="preload" href="fonts/SourceSansPro/SourceSansPro-LightItalic.woff?v=VERSION" as="font" crossorigin="anonymous"/>
<link rel="preload" href="fonts/SourceSansPro/SourceSansPro-Italic.woff?v=VERSION" as="font" crossorigin="anonymous"/>
<link rel="preload" href="fonts/SourceSansPro/SourceSansPro-SemiboldItalic.woff?v=VERSION" as="font" crossorigin="anonymous"/>
<link rel="preload" href="fonts/SourceSansPro/SourceSansPro-BoldItalic.woff?v=VERSION" as="font" crossorigin="anonymous"/>
2023-03-17 02:55:56 +08:00
<link rel="preload" href="files/source-code-pro-latin-400-normal.woff2" as="font" crossorigin="anonymous"/>
2022-01-19 22:33:14 +08:00
<style>
@font-face {
font-family: 'bbb-icons';
2022-06-21 21:52:40 +08:00
src: url('fonts/BbbIcons/bbb-icons.woff2?v=VERSION') format('woff2'),
url('fonts/BbbIcons/bbb-icons.woff?v=VERSION') format('woff');
2022-01-19 22:33:14 +08:00
font-weight: normal;
font-style: normal;
}
</style>
2021-06-09 22:29:55 +08:00
<!-- fonts -->
2016-04-29 03:02:51 +08:00
</head>
2017-07-18 19:51:29 +08:00
<body style="background-color: #06172A">
2022-01-24 00:18:09 +08:00
<div id="aria-polite-alert" aria-live="polite" aria-atomic="false" class="sr-only"></div>
2022-12-15 23:23:53 +08:00
<main>
<div id="app" role="document">
</main>
2022-01-24 00:18:09 +08:00
</div>
<span id="destination"></span>
<audio id="remote-media" autoplay>
</audio>
2016-04-29 03:02:51 +08:00
</body>