2020-10-26 00:03:30 +01:00
|
|
|
*{
|
|
|
|
font-family: 'Open Sans', sans-serif;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: auto;
|
2020-12-15 17:31:55 +01:00
|
|
|
}
|
|
|
|
* a, button, select{
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-10-26 00:03:30 +01:00
|
|
|
}
|
2020-05-12 00:22:55 +02:00
|
|
|
body{
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2020-10-25 22:41:31 +01:00
|
|
|
body button:focus,
|
|
|
|
body img:focus,
|
|
|
|
body input:focus {
|
|
|
|
outline: -webkit-focus-ring-color auto 0;
|
|
|
|
}
|
2020-05-13 20:22:42 +02:00
|
|
|
body .message-info{
|
|
|
|
width: 20%;
|
|
|
|
height: auto;
|
|
|
|
min-height: 30px;
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
left: 40%;
|
|
|
|
padding-top: 10px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
body .message-info.error{
|
|
|
|
background: red;
|
|
|
|
}
|
|
|
|
body .message-info.success{
|
|
|
|
background: green;
|
|
|
|
}
|
|
|
|
body .message-info.info{
|
|
|
|
background: dodgerblue;
|
|
|
|
}
|
|
|
|
body .message-info.warning{
|
|
|
|
background: #ffa500d6;
|
|
|
|
}
|
2020-08-17 21:59:26 +02:00
|
|
|
.video-container{
|
2020-08-13 18:21:48 +02:00
|
|
|
position: relative;
|
2020-08-17 21:59:26 +02:00
|
|
|
transition: all 0.2s ease;
|
2020-08-13 18:21:48 +02:00
|
|
|
background-color: #00000099;
|
2021-05-17 16:16:18 +02:00
|
|
|
cursor: url('./images/cursor_pointer.png'), pointer;
|
2020-05-14 20:39:30 +02:00
|
|
|
}
|
2020-08-17 21:59:26 +02:00
|
|
|
.video-container i{
|
2020-05-14 20:39:30 +02:00
|
|
|
position: absolute;
|
|
|
|
width: 100px;
|
2021-04-12 18:17:04 +02:00
|
|
|
height: 100px;
|
2020-05-14 20:39:30 +02:00
|
|
|
left: calc(50% - 50px);
|
|
|
|
top: calc(50% - 50px);
|
|
|
|
background-color: black;
|
|
|
|
border-radius: 50%;
|
|
|
|
text-align: center;
|
2021-04-12 18:17:04 +02:00
|
|
|
padding-top: 32px;
|
2020-05-14 20:39:30 +02:00
|
|
|
font-size: 28px;
|
|
|
|
color: white;
|
2021-04-24 15:45:58 +02:00
|
|
|
overflow: hidden;
|
2020-05-14 20:39:30 +02:00
|
|
|
}
|
2021-01-30 14:08:11 +01:00
|
|
|
|
2020-08-17 21:59:26 +02:00
|
|
|
.video-container img{
|
2020-05-14 20:39:30 +02:00
|
|
|
position: absolute;
|
|
|
|
display: none;
|
2021-04-12 18:17:04 +02:00
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2020-05-14 20:39:30 +02:00
|
|
|
left: 5px;
|
|
|
|
bottom: 5px;
|
|
|
|
padding: 10px;
|
|
|
|
z-index: 2;
|
2020-05-03 14:29:45 +02:00
|
|
|
}
|
2021-02-02 18:19:51 +01:00
|
|
|
.video-container img.block-logo {
|
|
|
|
left: 30%;
|
|
|
|
bottom: 15%;
|
|
|
|
width: 150px;
|
|
|
|
height: 150px;
|
|
|
|
}
|
2020-10-13 19:56:42 +02:00
|
|
|
|
2021-01-30 14:08:11 +01:00
|
|
|
.video-container button.report{
|
|
|
|
display: block;
|
2021-05-17 16:16:18 +02:00
|
|
|
cursor: url('./images/cursor_pointer.png'), pointer;
|
2021-01-30 14:08:11 +01:00
|
|
|
background: none;
|
|
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
border: none;
|
|
|
|
background-color: black;
|
|
|
|
border-radius: 15px;
|
|
|
|
position: absolute;
|
|
|
|
width: 0px;
|
|
|
|
height: 35px;
|
2020-10-13 19:56:42 +02:00
|
|
|
right: 5px;
|
2021-01-30 14:08:11 +01:00
|
|
|
bottom: 5px;
|
|
|
|
padding: 0px;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index: 2;
|
|
|
|
transition: all .5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-container:hover button.report{
|
|
|
|
width: 35px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-container button.report:hover {
|
2021-05-05 01:49:04 +02:00
|
|
|
width: 160px;
|
2021-01-30 14:08:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.video-container button.report img{
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
bottom: 5px;
|
|
|
|
left: 5px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2021-05-17 16:16:18 +02:00
|
|
|
cursor: url('./images/cursor_pointer.png'), pointer;
|
2021-04-12 18:17:04 +02:00
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
2021-01-30 14:08:11 +01:00
|
|
|
}
|
|
|
|
.video-container button.report span{
|
|
|
|
position: absolute;
|
2021-04-12 18:17:04 +02:00
|
|
|
bottom: 6px;
|
2021-01-30 14:08:11 +01:00
|
|
|
left: 36px;
|
|
|
|
color: white;
|
|
|
|
font-size: 16px;
|
2021-05-17 16:16:18 +02:00
|
|
|
cursor: url('./images/cursor_pointer.png'), pointer;
|
2020-10-13 19:56:42 +02:00
|
|
|
}
|
2021-02-02 18:19:51 +01:00
|
|
|
.video-container img.active {
|
|
|
|
display: block !important;
|
2020-10-13 19:56:42 +02:00
|
|
|
}
|
|
|
|
|
2020-08-17 21:59:26 +02:00
|
|
|
.video-container video{
|
2020-05-14 20:39:30 +02:00
|
|
|
height: 100%;
|
2021-05-17 16:16:18 +02:00
|
|
|
cursor: url('./images/cursor_pointer.png'), pointer;
|
2020-05-14 20:39:30 +02:00
|
|
|
}
|
|
|
|
|
2020-11-27 16:24:07 +01:00
|
|
|
.video-container video:focus{
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2020-08-17 21:59:26 +02:00
|
|
|
.video-container#div-myCamVideo{
|
2020-05-14 20:39:30 +02:00
|
|
|
border: none;
|
|
|
|
}
|
2020-04-25 20:29:03 +02:00
|
|
|
|
2020-08-13 18:21:48 +02:00
|
|
|
#div-myCamVideo {
|
2020-08-13 18:28:22 +02:00
|
|
|
position: absolute;
|
2020-10-25 19:38:00 +01:00
|
|
|
right: 15px;
|
2021-04-19 14:42:49 +02:00
|
|
|
bottom: 30px;
|
2020-10-27 20:18:25 +01:00
|
|
|
border-radius: 15px 15px 15px 15px;
|
2021-05-05 01:49:04 +02:00
|
|
|
max-height: 20%;
|
2021-05-20 18:05:03 +02:00
|
|
|
transition: right 350ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
#div-myCamVideo.hide {
|
|
|
|
right: -20vw;
|
2020-04-25 20:29:03 +02:00
|
|
|
}
|
2020-08-13 18:21:48 +02:00
|
|
|
|
|
|
|
video#myCamVideo{
|
|
|
|
width: 15vw;
|
2020-08-16 23:19:04 +02:00
|
|
|
-webkit-transform: scaleX(-1);
|
|
|
|
transform: scaleX(-1);
|
2020-10-27 20:18:25 +01:00
|
|
|
border-radius: 15px 15px 15px 15px;
|
2020-08-13 18:21:48 +02:00
|
|
|
/*width: 200px;*/
|
|
|
|
/*height: 113px;*/
|
2020-04-25 20:29:03 +02:00
|
|
|
}
|
|
|
|
|
2021-05-05 01:49:04 +02:00
|
|
|
.sound-progress{
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
right: 14px;
|
|
|
|
top: calc(50% - 5px);
|
|
|
|
}
|
|
|
|
.sound-progress.active{
|
|
|
|
display: table-column;
|
|
|
|
}
|
|
|
|
.sound-progress span{
|
|
|
|
position: absolute;
|
|
|
|
color: black;
|
|
|
|
background-color: #00000020;
|
|
|
|
width: 5px;
|
|
|
|
height: 5px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
.sound-progress span.active{
|
|
|
|
background-color: #00c3ff66
|
|
|
|
}
|
|
|
|
.sound-progress span:nth-child(1){
|
|
|
|
top: calc(50% + 20px);
|
|
|
|
}
|
|
|
|
.sound-progress span:nth-child(2){
|
|
|
|
top: calc(50% + 10px);
|
|
|
|
}
|
|
|
|
.sound-progress span:nth-child(3){
|
|
|
|
top: calc(50% - 0px);
|
|
|
|
}
|
|
|
|
.sound-progress span:nth-child(4){
|
|
|
|
top: calc(50% - 10px);
|
|
|
|
}
|
|
|
|
.sound-progress span:nth-child(5){
|
|
|
|
top: calc(50% - 20px);
|
|
|
|
}
|
2020-08-16 23:19:04 +02:00
|
|
|
|
2020-08-20 22:57:34 +02:00
|
|
|
.btn-cam-action {
|
2021-03-27 01:34:26 +01:00
|
|
|
z-index: 1;
|
2021-02-03 23:28:46 +01:00
|
|
|
pointer-events: all;
|
2020-08-20 22:57:34 +02:00
|
|
|
position: absolute;
|
2021-05-05 01:49:04 +02:00
|
|
|
display: inline-flex;
|
|
|
|
bottom: 10px;
|
|
|
|
right: 15px;
|
2021-05-21 18:26:50 +02:00
|
|
|
width: 180px;
|
2021-05-05 01:49:04 +02:00
|
|
|
height: 40px;
|
|
|
|
text-align: center;
|
|
|
|
align-content: center;
|
|
|
|
align-items: center;
|
2021-05-21 18:26:50 +02:00
|
|
|
justify-content: flex-end;
|
2021-05-05 01:49:04 +02:00
|
|
|
justify-items: center;
|
2020-08-20 22:57:34 +02:00
|
|
|
}
|
2021-01-06 02:27:48 +01:00
|
|
|
|
|
|
|
/* override copyright btn*/
|
|
|
|
.btn-cam-action#btn-copy-action {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 350px;
|
|
|
|
width: 150px;
|
|
|
|
height: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.copyright {
|
|
|
|
height: 100vh;
|
|
|
|
padding:1px;
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
2020-05-01 21:15:00 +02:00
|
|
|
/*btn animation*/
|
2020-04-19 19:32:38 +02:00
|
|
|
.btn-cam-action div{
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2021-05-05 01:49:04 +02:00
|
|
|
/*position: absolute;*/
|
2020-04-19 19:32:38 +02:00
|
|
|
border: solid 0px black;
|
2020-05-03 22:24:14 +02:00
|
|
|
width: 44px;
|
|
|
|
height: 44px;
|
2020-04-19 19:32:38 +02:00
|
|
|
background: #666;
|
|
|
|
box-shadow: 2px 2px 24px #444;
|
|
|
|
border-radius: 48px;
|
2021-04-19 14:42:49 +02:00
|
|
|
transform: translateY(20px);
|
2020-04-19 19:32:38 +02:00
|
|
|
transition-timing-function: ease-in-out;
|
2021-05-05 01:49:04 +02:00
|
|
|
margin: 0 4%;
|
2020-04-19 19:32:38 +02:00
|
|
|
}
|
2020-08-22 15:26:40 +02:00
|
|
|
.btn-cam-action div.disabled {
|
|
|
|
background: #d75555;
|
|
|
|
}
|
|
|
|
.btn-cam-action div.enabled {
|
|
|
|
background: #73c973;
|
|
|
|
}
|
2020-08-20 22:57:34 +02:00
|
|
|
.btn-cam-action:hover div{
|
2020-05-01 21:15:00 +02:00
|
|
|
transform: translateY(0);
|
2020-04-19 19:32:38 +02:00
|
|
|
}
|
|
|
|
.btn-cam-action div:hover{
|
|
|
|
background: #407cf7;
|
|
|
|
box-shadow: 4px 4px 48px #666;
|
2021-04-19 14:42:49 +02:00
|
|
|
transition: 120ms;
|
2020-04-19 19:32:38 +02:00
|
|
|
}
|
|
|
|
.btn-micro{
|
2021-02-03 23:28:46 +01:00
|
|
|
pointer-events: auto;
|
2020-04-19 19:32:38 +02:00
|
|
|
transition: all .3s;
|
2021-05-05 01:49:04 +02:00
|
|
|
/*right: 44px;*/
|
2020-04-19 19:32:38 +02:00
|
|
|
}
|
|
|
|
.btn-video{
|
2021-02-03 23:28:46 +01:00
|
|
|
pointer-events: auto;
|
2020-08-20 22:57:34 +02:00
|
|
|
transition: all .25s;
|
2021-05-05 01:49:04 +02:00
|
|
|
/*right: 134px;*/
|
2020-06-06 17:03:10 +02:00
|
|
|
}
|
|
|
|
.btn-monitor{
|
2021-02-03 23:28:46 +01:00
|
|
|
pointer-events: auto;
|
2020-06-06 17:03:10 +02:00
|
|
|
transition: all .2s;
|
2021-05-05 01:49:04 +02:00
|
|
|
/*right: 224px;*/
|
2020-04-19 19:32:38 +02:00
|
|
|
}
|
2021-05-21 18:26:50 +02:00
|
|
|
.btn-monitor.hide {
|
|
|
|
transform: translateY(60px);
|
|
|
|
}
|
2021-05-26 12:30:56 +02:00
|
|
|
.btn-cam-action:hover .btn-monitor.hide{
|
|
|
|
transform: translateY(60px);
|
|
|
|
}
|
2021-02-03 23:28:46 +01:00
|
|
|
.btn-copy{
|
|
|
|
pointer-events: auto;
|
|
|
|
transition: all .3s;
|
|
|
|
right: 44px;
|
|
|
|
opacity: 1;
|
2020-04-19 19:32:38 +02:00
|
|
|
}
|
2021-01-06 02:27:48 +01:00
|
|
|
.btn-copy{
|
|
|
|
transition: all .3s;
|
|
|
|
right: 44px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2020-04-19 19:32:38 +02:00
|
|
|
.btn-cam-action div img{
|
2020-05-03 22:24:14 +02:00
|
|
|
height: 22px;
|
|
|
|
width: 30px;
|
|
|
|
top: calc(48px - 37px);
|
|
|
|
left: calc(48px - 41px);
|
2020-04-19 19:32:38 +02:00
|
|
|
position: relative;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-06-06 22:49:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Spinner */
|
|
|
|
.connecting-spinner {
|
|
|
|
/*display: inline-block;*/
|
|
|
|
position: absolute;
|
2021-04-12 18:17:04 +02:00
|
|
|
left: calc(50% - 62px);
|
|
|
|
top: calc(50% - 62px);
|
2020-06-06 22:49:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
width: 130px;
|
|
|
|
height: 130px;
|
|
|
|
}
|
|
|
|
.connecting-spinner:after {
|
|
|
|
content: " ";
|
|
|
|
display: block;
|
|
|
|
width: 108px;
|
|
|
|
height: 108px;
|
|
|
|
margin: 8px;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 6px solid #fff;
|
|
|
|
border-color: #fff transparent #fff transparent;
|
|
|
|
animation: connecting-spinner 1.2s linear infinite;
|
|
|
|
}
|
|
|
|
@keyframes connecting-spinner {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rtc-error {
|
|
|
|
position: absolute;
|
|
|
|
left: calc(50% - 68px);
|
|
|
|
top: calc(50% - 68px);
|
|
|
|
|
|
|
|
|
|
|
|
width: 130px;
|
|
|
|
height: 130px;
|
|
|
|
}
|
|
|
|
.rtc-error:after {
|
|
|
|
content: " ";
|
|
|
|
display: block;
|
|
|
|
width: 108px;
|
|
|
|
height: 108px;
|
|
|
|
margin: 8px;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 6px solid #f00;
|
|
|
|
animation: blinker 1s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes blinker {
|
|
|
|
50% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
2020-06-23 12:24:36 +02:00
|
|
|
|
|
|
|
.webrtcsetup{
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
2020-06-24 17:29:23 +02:00
|
|
|
top: 140px;
|
2020-06-23 12:24:36 +02:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
2020-06-24 17:46:41 +02:00
|
|
|
border: white 6px solid;
|
2020-06-23 12:24:36 +02:00
|
|
|
}
|
|
|
|
.webrtcsetup .background-img {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
width: 40%;
|
|
|
|
height: 60%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2020-06-24 17:46:41 +02:00
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
2020-06-23 12:24:36 +02:00
|
|
|
}
|
|
|
|
#myCamVideoSetup {
|
|
|
|
width: 100%;
|
2020-06-24 17:29:23 +02:00
|
|
|
height: 100%;
|
2021-05-18 16:38:56 +02:00
|
|
|
-webkit-transform: scaleX(-1);
|
|
|
|
transform: scaleX(-1);
|
2020-06-23 12:24:36 +02:00
|
|
|
}
|
|
|
|
.webrtcsetup.active{
|
|
|
|
display: block;
|
|
|
|
}
|
2020-08-13 18:21:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* New layout */
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
}
|
|
|
|
.main-container {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
2020-10-27 16:59:12 +01:00
|
|
|
position: absolute;
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-aspect-ratio: 1/1) {
|
|
|
|
.game-overlay {
|
2020-08-16 23:19:04 +02:00
|
|
|
flex-direction: row;
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
2020-08-16 23:19:04 +02:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar > div {
|
2020-08-16 23:45:03 +02:00
|
|
|
max-height: 21%;
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
2020-08-27 10:09:47 +02:00
|
|
|
|
|
|
|
.sidebar > div:hover {
|
|
|
|
max-height: 25%;
|
|
|
|
}
|
2020-10-27 16:59:12 +01:00
|
|
|
|
2020-08-16 23:19:04 +02:00
|
|
|
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
|
|
|
|
2020-10-27 16:59:12 +01:00
|
|
|
#game {
|
|
|
|
width: 100%;
|
2020-08-13 18:21:48 +02:00
|
|
|
position: relative; /* Position relative is needed for the game-overlay. */
|
|
|
|
}
|
|
|
|
|
2021-01-03 12:45:18 +01:00
|
|
|
.audioplayer:first-child {
|
|
|
|
display: grid;
|
|
|
|
grid: 2rem / 4rem 10rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.audioplayer > button, .audioplayer > div, .audioplayer > label {
|
|
|
|
background-color: rgba(0,0,0,0.5);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2021-03-11 22:19:21 +01:00
|
|
|
.audioplayer > div {
|
|
|
|
padding-right: 1.2rem;
|
|
|
|
}
|
|
|
|
|
2021-01-03 12:45:18 +01:00
|
|
|
#audioplayerctrl {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
2021-03-11 22:19:21 +01:00
|
|
|
right: calc(50% - 120px);
|
2021-01-03 12:45:18 +01:00
|
|
|
padding: 0.3rem 0.5rem;
|
|
|
|
color: white;
|
|
|
|
transition: transform 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#audioplayer_mute {
|
|
|
|
max-width: 5rem;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
#audioplayer_mute:focus, #audioplayer_mute:active {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
#audioplayer_mute > svg {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
#audioplayer_volume_icon_playing.muted {
|
|
|
|
visibility: hidden;
|
|
|
|
display: none;
|
|
|
|
}
|
2021-04-20 21:37:48 +02:00
|
|
|
#audioplayer_volume_icon_playing.low #audioplayer_volume_icon_playing_high {
|
|
|
|
visibility: hidden;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#audioplayer_volume_icon_playing.low #audioplayer_volume_icon_playing_mid {
|
|
|
|
visibility: hidden;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#audioplayer_volume_icon_playing.mid #audioplayer_volume_icon_playing_high {
|
|
|
|
visibility: hidden;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-01-03 12:45:18 +01:00
|
|
|
#audioplayerctrl > #audioplayer_volume {
|
|
|
|
width: 100%;
|
|
|
|
background-color: rgba(0,0,0,0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sollte eigentlich in den aspect-ratio teil ..
|
|
|
|
*/
|
|
|
|
#audioplayerctrl.loading {
|
|
|
|
transform: translateY(-90%);
|
|
|
|
}
|
|
|
|
#audioplayerctrl.hidden {
|
|
|
|
transform: translateY(-100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Style Input Range
|
|
|
|
* https://www.cssportal.com/style-input-range/
|
|
|
|
*/
|
|
|
|
input[type=range] {
|
|
|
|
height: 28px;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 10px 0;
|
|
|
|
width: 100%;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
input[type=range]:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
input[type=range]::-webkit-slider-runnable-track {
|
|
|
|
width: 100%;
|
|
|
|
height: 5px;
|
|
|
|
animate: 0.2s;
|
|
|
|
box-shadow: 1px 1px 1px #000000;
|
|
|
|
background: #FFFFFF;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid #000000;
|
|
|
|
}
|
|
|
|
input[type=range]::-webkit-slider-thumb {
|
|
|
|
box-shadow: 1px 1px 1px #000000;
|
|
|
|
border: 1px solid #000000;
|
|
|
|
height: 20px;
|
|
|
|
width: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin-top: -8.5px;
|
|
|
|
}
|
|
|
|
input[type=range]:focus::-webkit-slider-runnable-track {
|
|
|
|
background: #FFFFFF;
|
|
|
|
}
|
|
|
|
input[type=range]::-moz-range-track {
|
|
|
|
width: 100%;
|
|
|
|
height: 5px;
|
|
|
|
animate: 0.2s;
|
|
|
|
box-shadow: 1px 1px 1px #000000;
|
|
|
|
background: #FFFFFF;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid #000000;
|
|
|
|
}
|
|
|
|
input[type=range]::-moz-range-thumb {
|
|
|
|
box-shadow: 1px 1px 1px #000000;
|
|
|
|
border: 1px solid #000000;
|
|
|
|
height: 20px;
|
|
|
|
width: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
}
|
|
|
|
input[type=range]::-ms-track {
|
|
|
|
width: 100%;
|
|
|
|
height: 5px;
|
|
|
|
animate: 0.2s;
|
|
|
|
background: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
input[type=range]::-ms-fill-lower {
|
|
|
|
background: #FFFFFF;
|
|
|
|
border: 1px solid #000000;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 1px 1px 1px #000000;
|
|
|
|
}
|
|
|
|
input[type=range]::-ms-fill-upper {
|
|
|
|
background: #FFFFFF;
|
|
|
|
border: 1px solid #000000;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 1px 1px 1px #000000;
|
|
|
|
}
|
|
|
|
input[type=range]::-ms-thumb {
|
|
|
|
margin-top: 1px;
|
|
|
|
box-shadow: 1px 1px 1px #000000;
|
|
|
|
border: 1px solid #000000;
|
|
|
|
height: 20px;
|
|
|
|
width: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
}
|
|
|
|
input[type=range]:focus::-ms-fill-lower {
|
|
|
|
background: #FFFFFF;
|
|
|
|
}
|
|
|
|
input[type=range]:focus::-ms-fill-upper {
|
|
|
|
background: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-13 18:21:48 +02:00
|
|
|
.game-overlay {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2021-02-03 23:28:46 +01:00
|
|
|
pointer-events: none;
|
2020-08-13 18:21:48 +02:00
|
|
|
/* TODO: DO WE NEED FLEX HERE???? WE WANT A SIDEBAR OF EXACTLY 25% (note: flex useful for direction!!!) */
|
|
|
|
}
|
|
|
|
|
2021-04-19 13:28:17 +02:00
|
|
|
.game-overlay + div {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.game-overlay + div > div {
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
2020-08-13 18:21:48 +02:00
|
|
|
.game-overlay.active {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.game-overlay video {
|
2021-05-05 11:56:24 +02:00
|
|
|
width: 100%;
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-section {
|
|
|
|
flex: 0 0 75%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: start;
|
2020-08-24 14:19:36 +02:00
|
|
|
align-items: flex-start;
|
2020-08-13 18:21:48 +02:00
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
2020-08-16 23:19:04 +02:00
|
|
|
.main-section > div {
|
2020-08-24 14:19:36 +02:00
|
|
|
margin: 2%;
|
|
|
|
flex-basis: 96%;
|
2020-08-27 10:09:47 +02:00
|
|
|
transition: margin-left 0.2s, margin-right 0.2s, margin-bottom 0.2s, margin-top 0.2s, flex-basis 0.2s;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2021-05-05 11:56:24 +02:00
|
|
|
pointer-events: auto;
|
2020-08-13 18:21:48 +02:00
|
|
|
/*flex-shrink: 2;*/
|
|
|
|
}
|
|
|
|
|
2020-08-27 10:09:47 +02:00
|
|
|
.main-section > div:hover {
|
|
|
|
margin: 0%;
|
|
|
|
flex-basis: 100%;
|
|
|
|
}
|
|
|
|
|
2020-08-13 18:21:48 +02:00
|
|
|
.sidebar {
|
|
|
|
flex: 0 0 25%;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar > div {
|
2020-08-16 23:19:04 +02:00
|
|
|
margin: 2%;
|
2020-08-27 10:09:47 +02:00
|
|
|
transition: margin-left 0.2s, margin-right 0.2s, margin-bottom 0.2s, margin-top 0.2s, max-height 0.2s, max-width 0.2s;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-10-27 20:18:25 +01:00
|
|
|
border-radius: 15px 15px 15px 15px;
|
2021-05-05 11:56:24 +02:00
|
|
|
pointer-events: auto;
|
2020-08-27 10:09:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar > div:hover {
|
|
|
|
margin: 0%;
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
|
|
|
|
2021-05-05 01:49:04 +02:00
|
|
|
.sidebar > div video {
|
2021-05-17 16:16:18 +02:00
|
|
|
cursor: url('./images/cursor_pointer.png'), pointer;
|
2021-05-05 01:49:04 +02:00
|
|
|
}
|
|
|
|
|
2020-08-16 23:45:03 +02:00
|
|
|
/* Let's make sure videos are vertically centered if they need to be cropped */
|
|
|
|
.media-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: hidden;
|
2020-10-27 20:46:53 +01:00
|
|
|
border-radius: 15px;
|
2020-08-16 23:45:03 +02:00
|
|
|
}
|
|
|
|
|
2020-08-13 18:21:48 +02:00
|
|
|
.chat-mode {
|
2021-02-06 19:52:59 +01:00
|
|
|
display: inline-grid;
|
2020-08-13 18:21:48 +02:00
|
|
|
width: 100%;
|
|
|
|
padding: 1%;
|
2021-02-06 19:52:59 +01:00
|
|
|
align-items: flex-start;
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
|
|
|
|
2020-08-27 10:09:47 +02:00
|
|
|
.chat-mode > div {
|
2020-08-13 18:21:48 +02:00
|
|
|
margin: 1%;
|
2020-08-17 15:20:03 +02:00
|
|
|
max-height: 96%;
|
2020-08-27 10:09:47 +02:00
|
|
|
transition: margin-left 0.2s, margin-right 0.2s, margin-bottom 0.2s, margin-top 0.2s;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
|
|
|
|
2020-08-27 10:09:47 +02:00
|
|
|
.chat-mode > div:hover {
|
|
|
|
margin: 0%;
|
|
|
|
}
|
2021-02-06 19:52:59 +01:00
|
|
|
|
2021-02-13 21:19:45 +01:00
|
|
|
.chat-mode.one-col {
|
2021-02-06 19:52:59 +01:00
|
|
|
grid-template-columns: auto;
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
|
|
|
|
2021-02-13 21:19:45 +01:00
|
|
|
.chat-mode.two-col {
|
2021-02-06 19:52:59 +01:00
|
|
|
grid-template-columns: auto auto;
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
|
|
|
|
2021-02-13 21:19:45 +01:00
|
|
|
.chat-mode.three-col {
|
2021-02-06 19:52:59 +01:00
|
|
|
grid-template-columns: auto auto auto;
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
|
|
|
|
2021-02-13 21:19:45 +01:00
|
|
|
.chat-mode.four-col {
|
2021-02-06 19:52:59 +01:00
|
|
|
grid-template-columns: auto auto auto auto;
|
2020-08-13 18:21:48 +02:00
|
|
|
}
|
2020-09-16 18:38:50 +02:00
|
|
|
|
2020-11-27 16:24:07 +01:00
|
|
|
/*CONSOLE*/
|
|
|
|
|
2020-09-19 01:08:56 +02:00
|
|
|
.message-container,
|
2020-09-16 21:50:04 +02:00
|
|
|
.main-console{
|
|
|
|
position: absolute;
|
|
|
|
width: 80%;
|
2020-09-19 01:08:56 +02:00
|
|
|
height: 80%;
|
2020-09-20 19:31:24 +02:00
|
|
|
min-height: 200px;
|
2020-09-23 18:07:31 +02:00
|
|
|
max-height: 80%;
|
2020-09-19 01:08:56 +02:00
|
|
|
top: -80%;
|
2020-12-16 18:52:11 +01:00
|
|
|
/*left: 10%;*/
|
|
|
|
left: 250px;
|
2020-10-25 19:38:00 +01:00
|
|
|
background: #333333;
|
2020-09-16 21:50:04 +02:00
|
|
|
z-index: 200;
|
|
|
|
transition: all 0.1s ease-out;
|
2020-11-27 16:24:07 +01:00
|
|
|
border-radius: 0 0 15px 15px;
|
2020-09-16 21:50:04 +02:00
|
|
|
}
|
2020-09-19 01:08:56 +02:00
|
|
|
|
|
|
|
.message-container{
|
|
|
|
height: auto;
|
|
|
|
border-radius: 0 0 10px 10px;
|
|
|
|
color: white;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
2020-09-23 18:07:31 +02:00
|
|
|
.message-container .content-message{
|
|
|
|
position: relative;
|
|
|
|
padding: 20px;
|
|
|
|
margin: 20px;
|
|
|
|
overflow: scroll;
|
|
|
|
max-height: 400px;
|
|
|
|
}
|
|
|
|
|
2020-09-20 19:31:24 +02:00
|
|
|
.main-console div.console,
|
2020-09-23 18:07:31 +02:00
|
|
|
.message-container div.clear {
|
2020-09-16 21:50:04 +02:00
|
|
|
position: absolute;
|
|
|
|
color: white;
|
|
|
|
z-index: 200;
|
|
|
|
transition: all 0.1s ease-out;
|
2020-10-24 13:37:33 +02:00
|
|
|
top: calc(100% + 2px);
|
|
|
|
width: 200px;
|
2020-09-20 17:12:27 +02:00
|
|
|
height: 40px;
|
2020-10-24 13:37:33 +02:00
|
|
|
background-color: #2d2d2dba;
|
|
|
|
left: calc(50% - 100px);
|
|
|
|
border-radius: 15px 15px 15px 15px;
|
2020-09-20 17:12:27 +02:00
|
|
|
text-align: center;
|
2020-09-16 21:50:04 +02:00
|
|
|
}
|
2020-09-19 01:08:56 +02:00
|
|
|
|
2020-11-27 16:24:07 +01:00
|
|
|
.main-console div.message,
|
|
|
|
.main-console div.setting{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-console div.message.active,
|
|
|
|
.main-console div.setting.active{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-10-24 13:37:33 +02:00
|
|
|
.message-container div.clear{
|
|
|
|
width: 100px;
|
|
|
|
left: calc(50% - 50px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-console div.console img,
|
|
|
|
.message-container div.clear img{
|
|
|
|
margin-top: 6px;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-10-24 13:37:33 +02:00
|
|
|
padding: 0 5px;
|
|
|
|
transition: all .5s ease;
|
|
|
|
transform: rotateY(0);
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
.main-console div.console img:hover,
|
|
|
|
.message-container div.clear img:hover{
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-console div.console img.active,
|
|
|
|
.message-container div.clear img{
|
|
|
|
transform: rotateY(3.142rad);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2020-09-20 19:31:24 +02:00
|
|
|
.main-console div.console p,
|
2020-09-23 18:07:31 +02:00
|
|
|
.message-container div.clear p{
|
2020-10-24 13:37:33 +02:00
|
|
|
margin-top: 12px;
|
2020-09-16 21:50:04 +02:00
|
|
|
}
|
2020-09-19 01:08:56 +02:00
|
|
|
|
2020-09-20 19:31:24 +02:00
|
|
|
.main-console div.console:hover,
|
2020-09-23 18:07:31 +02:00
|
|
|
.message-container div.clear:hover {
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-10-24 13:37:33 +02:00
|
|
|
top: calc(100% + 5px);
|
2020-09-16 21:50:04 +02:00
|
|
|
transform: scale(1.2) translateY(3px);
|
2020-09-20 19:31:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-console #input-send-text{
|
|
|
|
min-height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-console #input-send-text .ql-editor{
|
|
|
|
color: white;
|
|
|
|
min-height: 200px;
|
2020-09-23 18:07:31 +02:00
|
|
|
max-height: 300px;
|
2020-09-20 19:31:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-console .ql-toolbar{
|
|
|
|
background: white;
|
2020-09-21 00:34:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-console .btn-action{
|
|
|
|
margin: 10px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-console .btn-action .btn{
|
|
|
|
border: 1px solid black;
|
|
|
|
background-color: #00000000;
|
|
|
|
color: #ffda01;
|
2020-10-27 20:18:25 +01:00
|
|
|
border-radius: 15px;
|
2020-09-21 00:34:25 +02:00
|
|
|
padding: 10px 30px;
|
|
|
|
transition: all .2s ease;
|
|
|
|
}
|
|
|
|
.main-console .btn-action .btn:hover{
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-09-21 00:34:25 +02:00
|
|
|
background-color: #ffda01;
|
|
|
|
color: black;
|
|
|
|
border: 1px solid black;
|
|
|
|
transform: scale(1.1);
|
2020-09-21 01:16:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-console .menu {
|
|
|
|
padding: 20px;
|
|
|
|
color: #ffffffa6;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-console .menu span {
|
|
|
|
margin: 20px;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-09-21 01:16:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-console .menu span.active {
|
|
|
|
color: white;
|
|
|
|
border-bottom: solid 1px white;
|
2020-09-21 15:00:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-console section{
|
|
|
|
text-align: center;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-console section.active{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-console section div.upload{
|
|
|
|
text-align: center;
|
|
|
|
border: solid 1px #ffda01;
|
|
|
|
height: 150px;
|
|
|
|
margin: 10px 200px;
|
|
|
|
padding: 20px;
|
|
|
|
min-height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-console section div.upload label{
|
|
|
|
color: #ffda01;
|
|
|
|
}
|
|
|
|
.main-console section div.upload input{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.main-console section div.upload label img{
|
|
|
|
height: 150px;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-09-21 15:00:39 +02:00
|
|
|
}
|
|
|
|
.main-console section div.upload label img{
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-09-21 15:00:39 +02:00
|
|
|
}
|
|
|
|
|
2020-12-16 18:52:11 +01:00
|
|
|
|
|
|
|
|
2020-09-21 15:00:39 +02:00
|
|
|
/*audio html when audio message playing*/
|
|
|
|
.main-container .audio-playing {
|
|
|
|
position: absolute;
|
|
|
|
width: 200px;
|
|
|
|
height: 54px;
|
|
|
|
right: -210px;
|
|
|
|
top: 40px;
|
|
|
|
transition: all 0.1s ease-out;
|
|
|
|
background-color: black;
|
|
|
|
border-radius: 30px 0 0 30px;
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-container .audio-playing.active{
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
.main-container .audio-playing img{
|
2021-04-19 20:19:40 +02:00
|
|
|
/*width: 30px;*/
|
2020-09-21 15:00:39 +02:00
|
|
|
border-radius: 50%;
|
|
|
|
background-color: #ffda01;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
.main-container .audio-playing p{
|
|
|
|
color: white;
|
|
|
|
margin-left: 10px;
|
2021-04-19 20:19:40 +02:00
|
|
|
margin-top: 14px;
|
2020-10-13 19:56:42 +02:00
|
|
|
}
|
|
|
|
|
2020-11-27 16:24:07 +01:00
|
|
|
/* VIDEO QUALITY */
|
|
|
|
.main-console div.setting h1{
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.main-console div.setting select{
|
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
min-width: 280px;
|
|
|
|
text-align: center;
|
|
|
|
min-height: 40px;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 15px;
|
|
|
|
}
|
|
|
|
.main-console div.setting select:focus{
|
|
|
|
border: solid 1px white;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
.main-console div.setting.active section{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-13 19:56:42 +02:00
|
|
|
/*REPORT input*/
|
|
|
|
div.modal-report-user{
|
|
|
|
position: absolute;
|
|
|
|
width: 800px;
|
|
|
|
height: 600px;
|
|
|
|
left: calc(50% - 400px);
|
2020-10-13 21:54:08 +02:00
|
|
|
top: 100px;
|
2020-10-13 19:56:42 +02:00
|
|
|
background-color: #000000ad;
|
2020-10-27 20:46:53 +01:00
|
|
|
border-radius: 15px;
|
2020-10-13 19:56:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-report-user textarea{
|
|
|
|
position: absolute;
|
|
|
|
height: 200px;
|
|
|
|
z-index: 999;
|
2020-10-13 21:54:08 +02:00
|
|
|
top: 200px;
|
|
|
|
background-color: #000000;
|
2020-10-13 19:56:42 +02:00
|
|
|
color: white;
|
2020-10-15 12:24:16 +02:00
|
|
|
width: calc(100% - 60px);
|
|
|
|
margin: 30px;
|
2020-10-27 20:46:53 +01:00
|
|
|
border-radius: 15px;
|
2020-10-13 19:56:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-report-user img{
|
|
|
|
position: absolute;
|
2021-04-12 18:17:04 +02:00
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
2020-10-13 19:56:42 +02:00
|
|
|
z-index: 999;
|
2021-04-12 18:17:04 +02:00
|
|
|
left: calc(50% - 12px);
|
2020-10-13 21:54:08 +02:00
|
|
|
top: 10px;
|
2020-10-13 19:56:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-report-user img#cancel-report-user{
|
|
|
|
position: absolute;
|
|
|
|
z-index: 999;
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
|
|
|
top: 0;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-10-13 19:56:42 +02:00
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
2020-10-15 12:24:16 +02:00
|
|
|
margin: 10px;
|
2020-10-13 19:56:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-report-user button{
|
|
|
|
position: absolute;
|
2020-10-13 21:54:08 +02:00
|
|
|
top: 450px;
|
2020-10-13 19:56:42 +02:00
|
|
|
left: calc(50% - 50px);
|
|
|
|
width: 100px;
|
|
|
|
border: 1px solid black;
|
|
|
|
background-color: #00000000;
|
|
|
|
color: #ffda01;
|
2020-10-27 20:18:25 +01:00
|
|
|
border-radius: 15px;
|
2020-10-13 19:56:42 +02:00
|
|
|
padding: 10px 30px;
|
|
|
|
transition: all .2s ease;
|
|
|
|
}
|
|
|
|
.modal-report-user button:hover{
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-10-13 19:56:42 +02:00
|
|
|
background-color: #ffda01;
|
|
|
|
color: black;
|
|
|
|
border: 1px solid black;
|
|
|
|
transform: scale(1.1);
|
|
|
|
}
|
|
|
|
|
2020-10-13 21:54:08 +02:00
|
|
|
.modal-report-user p#title-report-user{
|
2020-10-13 19:56:42 +02:00
|
|
|
font-size: 30px;
|
|
|
|
color: white;
|
|
|
|
position: absolute;
|
2020-10-13 21:54:08 +02:00
|
|
|
top: 30px;
|
2020-10-13 19:56:42 +02:00
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2020-10-13 21:54:08 +02:00
|
|
|
|
|
|
|
.modal-report-user p#body-report-user{
|
|
|
|
font-size: 24px;
|
|
|
|
color: white;
|
|
|
|
position: absolute;
|
2020-10-15 12:24:16 +02:00
|
|
|
top: 70px;
|
2020-10-13 21:54:08 +02:00
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
2020-10-15 12:24:16 +02:00
|
|
|
padding: 30px;
|
2020-10-19 19:32:47 +02:00
|
|
|
max-width: calc(800px - 60px); /* size of modal - padding*/
|
2020-10-13 21:54:08 +02:00
|
|
|
}
|
2020-10-19 19:32:47 +02:00
|
|
|
|
2020-10-25 19:39:15 +01:00
|
|
|
/*MESSAGE*/
|
|
|
|
.discussion{
|
|
|
|
position: fixed;
|
2020-10-25 21:59:14 +01:00
|
|
|
left: -300px;
|
2020-10-30 20:35:45 +01:00
|
|
|
top: 0px;
|
2020-10-25 19:39:15 +01:00
|
|
|
width: 220px;
|
|
|
|
height: 100%;
|
2020-10-25 21:59:14 +01:00
|
|
|
background-color: #333333;
|
2020-10-25 19:39:15 +01:00
|
|
|
padding: 20px;
|
2020-10-25 21:59:14 +01:00
|
|
|
transition: all 0.5s ease;
|
2020-10-25 19:39:15 +01:00
|
|
|
}
|
|
|
|
.discussion.active{
|
2020-10-25 21:59:14 +01:00
|
|
|
left: 0;
|
2020-10-25 19:39:15 +01:00
|
|
|
}
|
2020-10-25 21:59:14 +01:00
|
|
|
.discussion .active-btn{
|
2020-10-25 19:39:15 +01:00
|
|
|
display: none;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-10-25 19:39:15 +01:00
|
|
|
height: 50px;
|
|
|
|
width: 50px;
|
|
|
|
background-color: #2d2d2dba;
|
|
|
|
position: absolute;
|
|
|
|
top: calc(50% - 25px);
|
2020-10-25 21:59:14 +01:00
|
|
|
margin-left: 315px;
|
2020-10-25 19:39:15 +01:00
|
|
|
border-radius: 50%;
|
|
|
|
border: none;
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
}
|
2020-10-25 21:59:14 +01:00
|
|
|
.discussion .active-btn.active{
|
2020-10-25 19:39:15 +01:00
|
|
|
display: block;
|
|
|
|
}
|
2020-10-25 21:59:14 +01:00
|
|
|
.discussion .active-btn:hover {
|
2020-10-25 19:39:15 +01:00
|
|
|
transform: scale(1.1) rotateY(3.142rad);
|
|
|
|
}
|
2020-10-25 21:59:14 +01:00
|
|
|
.discussion .active-btn img{
|
2020-10-25 19:39:15 +01:00
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
|
|
|
margin: 13px 5px;
|
|
|
|
}
|
2020-10-25 21:59:14 +01:00
|
|
|
|
|
|
|
.discussion .close-btn{
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 10px;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-10-25 21:59:14 +01:00
|
|
|
}
|
|
|
|
.discussion .close-btn img{
|
|
|
|
height: 15px;
|
|
|
|
right: 15px;
|
|
|
|
}
|
|
|
|
|
2020-10-25 19:39:15 +01:00
|
|
|
.discussion p{
|
|
|
|
color: white;
|
|
|
|
font-size: 22px;
|
|
|
|
padding-left: 10px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .participants{
|
|
|
|
height: 200px;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .participants .participant{
|
|
|
|
display: flex;
|
|
|
|
margin: 5px 10px;
|
|
|
|
background-color: #ffffff69;
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 15px;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-10-25 19:39:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .participants .participant:hover{
|
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
.discussion .participants .participant:hover p{
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .participants .participant:before {
|
|
|
|
content: '';
|
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
|
|
|
background-color: #1e7e34;
|
|
|
|
position: absolute;
|
|
|
|
margin-left: 18px;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-top: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .participants .participant img{
|
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .participants .participant p{
|
|
|
|
font-size: 16px;
|
|
|
|
margin-left: 10px;
|
2020-10-26 00:26:10 +01:00
|
|
|
margin-top: 2px;
|
2020-10-25 19:39:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .participants .participant button.report-btn{
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-10-25 19:39:15 +01:00
|
|
|
position: absolute;
|
|
|
|
background-color: #2d2d2dba;
|
|
|
|
right: 34px;
|
|
|
|
margin: 0px;
|
2021-04-12 18:17:04 +02:00
|
|
|
padding: 2px 0px;
|
2020-10-25 19:39:15 +01:00
|
|
|
border-radius: 15px;
|
|
|
|
border: none;
|
|
|
|
color: white;
|
|
|
|
width: 0px;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: all .5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .participants .participant:hover button.report-btn{
|
|
|
|
width: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .messages{
|
|
|
|
position: absolute;
|
2021-04-24 10:36:53 +02:00
|
|
|
height: calc(100% - 390px);
|
2020-10-25 21:59:14 +01:00
|
|
|
overflow-x: hidden;
|
2020-11-10 12:38:32 +01:00
|
|
|
overflow-y: auto;
|
2020-10-25 21:59:14 +01:00
|
|
|
max-width: calc(100% - 40px);
|
|
|
|
width: calc(100% - 40px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .messages h2{
|
|
|
|
color: white;
|
2020-10-25 19:39:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .messages .message{
|
|
|
|
margin: 5px;
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
2020-10-25 21:59:14 +01:00
|
|
|
width: 100%;
|
2020-10-25 19:39:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .messages .message.me{
|
|
|
|
float: left;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .messages .message p{
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2020-10-25 21:59:14 +01:00
|
|
|
.discussion .messages .message p.body{
|
2021-01-06 13:36:18 +01:00
|
|
|
color: white;
|
2020-10-25 21:59:14 +01:00
|
|
|
font-size: 16px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2021-02-03 23:11:33 +01:00
|
|
|
.discussion .messages .message p a{
|
2021-01-06 13:36:18 +01:00
|
|
|
color: white;
|
|
|
|
}
|
2020-10-25 21:59:14 +01:00
|
|
|
|
|
|
|
.discussion .send-message{
|
|
|
|
position: absolute;
|
|
|
|
bottom: 45px;
|
2021-04-12 18:17:04 +02:00
|
|
|
width: 200px;
|
2020-10-25 21:59:14 +01:00
|
|
|
height: 26px;
|
2021-01-06 13:36:18 +01:00
|
|
|
margin-bottom: 10px;
|
2020-10-25 21:59:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .send-message input{
|
|
|
|
position: absolute;
|
2021-04-12 18:17:04 +02:00
|
|
|
width: calc(100% - 20px);
|
|
|
|
height: 30px;
|
2020-10-25 21:59:14 +01:00
|
|
|
background-color: #171717;
|
|
|
|
color: white;
|
2021-04-12 18:17:04 +02:00
|
|
|
border-radius: 10px;
|
2020-10-25 21:59:14 +01:00
|
|
|
border: none;
|
2020-11-10 12:38:32 +01:00
|
|
|
padding: 6px;
|
2020-10-25 21:59:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .send-message img{
|
|
|
|
position: absolute;
|
|
|
|
margin-right: 10px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
background-color: #ffffff69;
|
|
|
|
}
|
|
|
|
.discussion .send-message img:hover{
|
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2020-11-21 15:40:24 +01:00
|
|
|
|
2020-10-31 14:04:55 +01:00
|
|
|
/** Action button **/
|
|
|
|
div.action{
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
text-align: center;
|
|
|
|
bottom: 40px;
|
|
|
|
transition: all .5s ease;
|
|
|
|
animation: mymove .5s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
}
|
2021-05-05 01:49:04 +02:00
|
|
|
div.action.info,
|
|
|
|
div.action.warning,
|
|
|
|
div.action.danger{
|
|
|
|
transition: all 1s ease;
|
|
|
|
animation: mymove 1s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
}
|
2020-10-31 14:04:55 +01:00
|
|
|
div.action p.action-body{
|
2021-05-17 16:16:18 +02:00
|
|
|
cursor: url('./images/cursor_pointer.png'), pointer;
|
2020-10-31 14:04:55 +01:00
|
|
|
padding: 10px;
|
|
|
|
background-color: #2d2d2dba;
|
|
|
|
color: #fff;
|
2021-04-12 18:17:04 +02:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
2020-10-31 14:04:55 +01:00
|
|
|
text-align: center;
|
2021-05-05 01:49:04 +02:00
|
|
|
max-width: 350px;
|
|
|
|
margin-left: calc(50% - 175px);
|
2020-10-31 14:04:55 +01:00
|
|
|
border-radius: 15px;
|
|
|
|
}
|
2021-05-05 01:49:04 +02:00
|
|
|
div.action.warning p.action-body{
|
|
|
|
background-color: #ff9800eb;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
div.action.danger p.action-body{
|
|
|
|
background-color: #da0000e3;
|
|
|
|
color: #000;
|
|
|
|
}
|
2021-03-08 09:28:15 +01:00
|
|
|
.popUpElement{
|
2021-03-09 14:21:11 +01:00
|
|
|
font-family: 'Press Start 2P';
|
2021-03-08 09:28:15 +01:00
|
|
|
text-align: left;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.popUpElement div {
|
2021-03-22 16:10:21 +01:00
|
|
|
font-family: 'Press Start 2P';
|
|
|
|
font-size: 10px;
|
2021-03-08 09:28:15 +01:00
|
|
|
background-color: #727678;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popUpElement button {
|
2021-03-22 16:10:21 +01:00
|
|
|
position: relative;
|
2021-03-08 09:28:15 +01:00
|
|
|
font-size: 10px;
|
2021-03-22 16:10:21 +01:00
|
|
|
border-image-repeat: revert;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popUpElement .buttonContainer {
|
|
|
|
float: right;
|
|
|
|
background-color: inherit;
|
|
|
|
|
2021-03-08 09:28:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 14:04:55 +01:00
|
|
|
@keyframes mymove {
|
|
|
|
0% {bottom: 40px;}
|
|
|
|
50% {bottom: 30px;}
|
|
|
|
100% {bottom: 40px;}
|
2021-01-03 12:45:18 +01:00
|
|
|
}
|
2021-05-12 18:32:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
#svelte-overlay {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|