2020-03-07 00:27:45 +08:00
|
|
|
<!--
|
|
|
|
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>
|
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
|
|
|
}
|
|
|
|
|
2021-12-16 05:35:36 +08:00
|
|
|
/* language-specific font */
|
|
|
|
body.lang-fa {
|
|
|
|
font-family: Tahoma, 'Source Sans Pro', Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
2021-10-15 00:40:42 +08:00
|
|
|
:-webkit-full-screen {
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2020-03-25 19:30:08 +08:00
|
|
|
.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;
|
|
|
|
} */
|
|
|
|
|
2017-03-13 22:38:32 +08:00
|
|
|
[hidden]:not([hidden="false"]) {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2021-09-03 11:32:47 +08:00
|
|
|
|
2021-10-11 01:06:45 +08:00
|
|
|
::-webkit-input-placeholder {
|
|
|
|
color: var(--palette-placeholder-text);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
:-moz-placeholder, /* Firefox 4 to 18 */
|
|
|
|
::-moz-placeholder { /* Firefox 19+ */
|
2021-09-03 11:32:47 +08:00
|
|
|
color: var(--palette-placeholder-text);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2023-01-13 20:35:20 +08:00
|
|
|
|
|
|
|
main {
|
|
|
|
display: initial;
|
|
|
|
}
|
2023-02-24 22:17:51 +08:00
|
|
|
|
|
|
|
.overrideSelect {
|
|
|
|
background-color: #FFF !important;
|
|
|
|
color: #000 !important;
|
|
|
|
}
|
2023-02-25 07:00:15 +08:00
|
|
|
|
|
|
|
.select {
|
|
|
|
background-color: rgba(66, 133, 244, 1) !important;
|
|
|
|
color: #FFF !important;
|
|
|
|
}
|
2017-03-13 22:38:32 +08:00
|
|
|
</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>
|
2021-09-24 01:06:42 +08:00
|
|
|
<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>
|
2020-03-25 19:30:08 +08:00
|
|
|
<span id="destination"></span>
|
2020-09-26 07:11:44 +08:00
|
|
|
<audio id="remote-media" autoplay>
|
2017-12-14 00:32:36 +08:00
|
|
|
</audio>
|
2016-04-29 03:02:51 +08:00
|
|
|
</body>
|