2021-07-26 23:58:31 +00:00
|
|
|
/*
|
|
|
|
Copyright 2021 New Vector Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.room {
|
2021-08-05 00:29:52 +00:00
|
|
|
position: relative;
|
2021-07-26 23:58:31 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: hidden;
|
2021-12-10 23:07:39 +00:00
|
|
|
min-height: 100%;
|
2021-07-26 23:58:31 +00:00
|
|
|
}
|
|
|
|
|
2021-12-10 22:44:04 +00:00
|
|
|
.inRoom {
|
2021-12-10 23:07:39 +00:00
|
|
|
position: fixed;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2021-12-10 22:44:04 +00:00
|
|
|
}
|
|
|
|
|
2021-07-26 23:58:31 +00:00
|
|
|
.joinRoom {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2021-07-28 23:14:38 +00:00
|
|
|
flex: 1;
|
2021-08-23 19:50:19 +00:00
|
|
|
overflow: hidden;
|
2021-12-10 23:07:39 +00:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.joinRoomContent {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2021-12-10 23:37:11 +00:00
|
|
|
.joinRoomContent h1 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-12-10 23:07:39 +00:00
|
|
|
.joinRoomFooter {
|
|
|
|
margin: 20px 0;
|
2021-07-26 23:58:31 +00:00
|
|
|
}
|
|
|
|
|
2021-12-07 02:00:34 +00:00
|
|
|
.homeLink {
|
|
|
|
margin-top: 50px;
|
|
|
|
color: #0dbd8b;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2021-08-21 00:02:47 +00:00
|
|
|
.preview {
|
|
|
|
position: relative;
|
2021-12-07 02:00:34 +00:00
|
|
|
max-width: 816px;
|
2021-12-10 23:37:11 +00:00
|
|
|
max-height: 75vh;
|
2021-08-21 00:02:47 +00:00
|
|
|
border-radius: 24px;
|
|
|
|
overflow: hidden;
|
2021-11-18 01:52:31 +00:00
|
|
|
background-color: var(--bgColor3);
|
2021-08-21 00:02:47 +00:00
|
|
|
margin: 40px 20px 20px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.preview video {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2021-12-07 02:00:34 +00:00
|
|
|
object-fit: contain;
|
|
|
|
background-color: black;
|
2021-08-21 00:02:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.webcamPermissions {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
margin: 0;
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 600;
|
2021-09-30 18:39:57 +00:00
|
|
|
text-align: center;
|
2021-08-21 00:02:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.previewButtons {
|
2021-12-07 02:00:34 +00:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 66px;
|
2021-08-21 00:02:47 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2021-12-07 02:00:34 +00:00
|
|
|
background-color: rgba(23, 25, 28, 0.9);
|
|
|
|
}
|
|
|
|
|
|
|
|
.joinCallButton {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 86px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.copyButton {
|
|
|
|
width: auto !important;
|
2021-08-21 00:02:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.previewButtons > * {
|
|
|
|
margin-right: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.previewButtons > :last-child {
|
|
|
|
margin-right: 0px;
|
2021-07-26 23:58:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.centerMessage {
|
|
|
|
display: flex;
|
2021-07-28 23:14:38 +00:00
|
|
|
flex: 1;
|
2021-07-26 23:58:31 +00:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2021-10-06 21:19:34 +00:00
|
|
|
flex-direction: column;
|
2021-07-26 23:58:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.centerMessage p {
|
|
|
|
display: block;
|
2021-10-06 21:19:34 +00:00
|
|
|
margin-bottom: 0;
|
2021-07-26 23:58:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.roomContainer {
|
2021-07-27 00:16:04 +00:00
|
|
|
overflow: hidden;
|
2021-07-26 23:58:31 +00:00
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
2021-07-27 00:16:04 +00:00
|
|
|
flex-direction: column;
|
|
|
|
gap: 2px;
|
2021-08-05 00:29:52 +00:00
|
|
|
min-height: 0;
|
2021-07-26 23:58:31 +00:00
|
|
|
}
|
|
|
|
|
2021-07-27 20:26:18 +00:00
|
|
|
.footer {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2021-08-23 19:50:19 +00:00
|
|
|
height: 64px;
|
2021-08-19 19:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer > * {
|
|
|
|
margin-right: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer > :last-child {
|
|
|
|
margin-right: 0px;
|
2021-07-27 20:26:18 +00:00
|
|
|
}
|
|
|
|
|
2021-09-30 18:39:57 +00:00
|
|
|
@media (min-width: 800px) {
|
2021-07-27 00:16:04 +00:00
|
|
|
.roomContainer {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2021-08-23 19:50:19 +00:00
|
|
|
|
|
|
|
.footer {
|
|
|
|
height: 118px;
|
|
|
|
}
|
2021-12-10 23:37:11 +00:00
|
|
|
|
|
|
|
.joinRoomContent h1 {
|
|
|
|
display: block;
|
|
|
|
}
|
2021-09-30 18:39:57 +00:00
|
|
|
}
|