2020-07-04 01:03:17 +08:00
|
|
|
@import "/imports/ui/components/media/styles";
|
2021-07-10 00:36:23 +08:00
|
|
|
@import '/imports/ui/components/loading-screen/styles';
|
2019-07-24 03:56:39 +08:00
|
|
|
|
2021-06-03 02:31:20 +08:00
|
|
|
.screenshareContainer {
|
2019-08-28 03:36:21 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2021-07-10 00:36:23 +08:00
|
|
|
background-color: var(--color-content-background);
|
2021-06-03 02:31:20 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2019-08-28 03:36:21 +08:00
|
|
|
|
2021-06-03 02:31:20 +08:00
|
|
|
.screenshareContainerPresenter {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
background-color: var(--color-content-background);
|
2019-07-24 03:56:39 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2020-07-04 01:03:17 +08:00
|
|
|
}
|
2020-12-10 06:00:54 +08:00
|
|
|
|
2021-06-03 02:31:20 +08:00
|
|
|
.screenshareContainerInside {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainText {
|
|
|
|
color: var(--color-white);
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
|
2021-07-10 00:36:23 +08:00
|
|
|
.screenshareContainerDefault {
|
|
|
|
position: absolute;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding-top: 4rem;
|
|
|
|
}
|
|
|
|
|
2020-12-10 06:00:54 +08:00
|
|
|
.unhealthyStream {
|
|
|
|
filter: grayscale(50%) opacity(50%);
|
|
|
|
}
|
2021-07-10 00:36:23 +08:00
|
|
|
|
|
|
|
.spinnerWrapper {
|
|
|
|
position: absolute;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
z-index: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|