2021-05-06 06:59:25 +00:00
|
|
|
.premeeting-screen {
|
2021-08-20 08:53:11 +00:00
|
|
|
background: #292929;
|
|
|
|
bottom: 0;
|
2020-05-20 08:25:31 +00:00
|
|
|
display: flex;
|
|
|
|
font-size: 1.3em;
|
2021-08-20 08:53:11 +00:00
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
2022-02-24 12:20:37 +00:00
|
|
|
z-index: $toolbarZ + 2;
|
2020-05-20 08:25:31 +00:00
|
|
|
|
2020-06-29 12:45:47 +00:00
|
|
|
.action-btn {
|
2021-08-20 08:53:11 +00:00
|
|
|
border-radius: 6px;
|
2021-06-30 09:01:47 +00:00
|
|
|
box-sizing: border-box;
|
2020-06-29 12:45:47 +00:00
|
|
|
color: #fff;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
2021-08-20 08:53:11 +00:00
|
|
|
font-size: 14px;
|
2021-09-17 10:12:34 +00:00
|
|
|
font-weight: 600;
|
2020-06-29 12:45:47 +00:00
|
|
|
line-height: 24px;
|
2021-08-20 08:53:11 +00:00
|
|
|
margin-bottom: 16px;
|
2020-06-29 12:45:47 +00:00
|
|
|
padding: 7px 16px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
2021-08-20 08:53:11 +00:00
|
|
|
width: 100%;
|
2020-06-29 12:45:47 +00:00
|
|
|
|
|
|
|
&.primary {
|
|
|
|
background: #0376DA;
|
|
|
|
border: 1px solid #0376DA;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.secondary {
|
2021-08-20 08:53:11 +00:00
|
|
|
background: #3D3D3D;
|
|
|
|
border: 1px solid transparent;
|
2020-06-29 12:45:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.text {
|
|
|
|
width: auto;
|
|
|
|
font-size: 13px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
background: #5E6D7A;
|
|
|
|
border: 1px solid #5E6D7A;
|
|
|
|
color: #AFB6BC;
|
|
|
|
cursor: initial;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
& > svg {
|
|
|
|
fill: #AFB6BC;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.options {
|
2020-09-29 11:00:30 +00:00
|
|
|
border-radius: 3px;
|
2020-06-29 12:45:47 +00:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
2020-09-29 11:00:30 +00:00
|
|
|
width: 36px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #0262B6;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2020-06-29 12:45:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-20 08:25:31 +00:00
|
|
|
.content {
|
|
|
|
align-items: center;
|
2021-08-20 08:53:11 +00:00
|
|
|
box-sizing: border-box;
|
2020-05-20 08:25:31 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-20 08:53:11 +00:00
|
|
|
flex-shrink: 0;
|
|
|
|
height: 100%;
|
2022-02-25 14:25:16 +00:00
|
|
|
margin: 0 30px;
|
2021-08-20 08:53:11 +00:00
|
|
|
padding: 24px 0 16px;
|
|
|
|
position: relative;
|
|
|
|
width: $prejoinDefaultContentWidth;
|
2020-05-20 08:25:31 +00:00
|
|
|
z-index: $toolbarZ + 2;
|
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
&-controls {
|
2020-05-20 08:25:31 +00:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2021-06-10 12:48:44 +00:00
|
|
|
flex-direction: column;
|
2021-08-20 08:53:11 +00:00
|
|
|
margin: auto;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.title {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 28px;
|
|
|
|
font-weight: 600;
|
|
|
|
letter-spacing: -0.015;
|
|
|
|
line-height: 36px;
|
2022-08-22 13:26:35 +00:00
|
|
|
margin-bottom: 16px;
|
2021-08-20 08:53:11 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
2021-09-10 07:22:17 +00:00
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
input.field {
|
|
|
|
background-color: white;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
border-radius: 6px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
color: #1C2025;
|
|
|
|
padding: 10px 16px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
2021-09-10 07:22:17 +00:00
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
&.error {
|
|
|
|
border: 1px solid #E04757;
|
2020-05-20 08:25:31 +00:00
|
|
|
}
|
2021-09-10 07:22:17 +00:00
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
&.focused {
|
|
|
|
box-shadow: 0px 0px 1px 1.5px black, 0px 0px 1.3px 4px white;
|
2020-05-20 08:25:31 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-18 08:50:28 +00:00
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
#new-toolbox {
|
|
|
|
bottom: 0;
|
|
|
|
position: relative;
|
|
|
|
transition: none;
|
|
|
|
|
2021-09-17 10:12:34 +00:00
|
|
|
.toolbox-content {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbox-content-items {
|
2022-03-29 09:01:48 +00:00
|
|
|
@include ltr;
|
2021-09-17 10:12:34 +00:00
|
|
|
background: transparent;
|
|
|
|
box-shadow: none;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
padding: 8px 0;
|
|
|
|
}
|
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
.toolbox-content,
|
|
|
|
.toolbox-content-wrapper,
|
|
|
|
.toolbox-content-items {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-05-20 08:25:31 +00:00
|
|
|
}
|
2021-08-20 08:53:11 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-20 08:25:31 +00:00
|
|
|
|
2022-02-25 14:25:16 +00:00
|
|
|
@media (max-width: 720px) {
|
2021-08-20 08:53:11 +00:00
|
|
|
flex-direction: column-reverse;
|
2021-09-10 07:22:17 +00:00
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
.content {
|
|
|
|
height: auto;
|
|
|
|
margin: 0 auto;
|
2020-05-20 08:25:31 +00:00
|
|
|
}
|
2021-08-20 08:53:11 +00:00
|
|
|
}
|
2020-05-20 08:25:31 +00:00
|
|
|
|
2021-11-16 09:04:57 +00:00
|
|
|
// mobile phone landscape
|
|
|
|
@media (max-height: 420px) {
|
|
|
|
div.content {
|
|
|
|
padding: 16px 16px 0 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
@media (max-width: 400px) {
|
|
|
|
.content {
|
|
|
|
padding: 16px;
|
|
|
|
width: 100%;
|
2021-06-30 09:01:47 +00:00
|
|
|
|
2021-09-17 10:12:34 +00:00
|
|
|
&-controls {
|
|
|
|
input.field {
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 14px 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
.title {
|
2021-09-17 10:12:34 +00:00
|
|
|
display: none;
|
2020-05-20 08:25:31 +00:00
|
|
|
}
|
2021-08-20 08:53:11 +00:00
|
|
|
}
|
2020-05-20 08:25:31 +00:00
|
|
|
|
2021-09-17 10:12:34 +00:00
|
|
|
.device-status-error {
|
|
|
|
border-radius: 0;
|
|
|
|
margin: 0 -16px;
|
2020-05-20 08:25:31 +00:00
|
|
|
}
|
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
input.field {
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 14px 16px;
|
|
|
|
}
|
2020-05-20 08:25:31 +00:00
|
|
|
|
2021-08-20 08:53:11 +00:00
|
|
|
.action-btn {
|
|
|
|
font-size: 16px;
|
2021-09-17 10:12:34 +00:00
|
|
|
margin-bottom: 8px;
|
2021-08-20 08:53:11 +00:00
|
|
|
padding: 11px 16px;
|
|
|
|
}
|
2020-05-20 08:25:31 +00:00
|
|
|
}
|
2021-08-20 08:53:11 +00:00
|
|
|
|
|
|
|
input::placeholder {
|
|
|
|
color: #040404;
|
|
|
|
}
|
2020-05-20 08:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#preview {
|
2021-08-20 08:53:11 +00:00
|
|
|
background: #040404;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-05-20 08:25:31 +00:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.avatar {
|
2021-08-20 08:53:11 +00:00
|
|
|
text {
|
|
|
|
fill: white;
|
|
|
|
}
|
2020-05-20 08:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
video {
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-06-18 08:50:28 +00:00
|
|
|
}
|
2020-07-15 08:06:14 +00:00
|
|
|
|
|
|
|
@mixin flex-centered() {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|