2020-04-24 19:38:21 +02:00
|
|
|
#title {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header {
|
|
|
|
margin-left: 2%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#statdiv {
|
|
|
|
white-space: nowrap;
|
|
|
|
margin-bottom: 2pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errspan {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.connected {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disconnected {
|
|
|
|
background-color: red;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.userform {
|
|
|
|
display: inline
|
|
|
|
}
|
|
|
|
|
2020-05-21 18:22:30 +02:00
|
|
|
.invisible {
|
2020-04-24 19:38:21 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error {
|
|
|
|
color: red;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noerror {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-05-05 17:50:16 +02:00
|
|
|
#optionsdiv {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
2020-05-21 18:22:30 +02:00
|
|
|
#presentbutton, #unpresentbutton {
|
|
|
|
width: 8em;
|
|
|
|
white-space: nowrap;
|
|
|
|
margin-right: 0.4em;
|
|
|
|
}
|
|
|
|
|
2020-05-05 17:50:16 +02:00
|
|
|
#videoselect {
|
|
|
|
width: 8em;
|
|
|
|
text-align-last: center;
|
|
|
|
margin-right: 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#audioselect {
|
|
|
|
width: 8em;
|
|
|
|
text-align-last: center;
|
2020-06-09 18:05:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#mutebutton {
|
|
|
|
width: 6em;
|
2020-05-05 17:50:16 +02:00
|
|
|
margin-right: 0.4em;
|
|
|
|
}
|
|
|
|
|
2020-06-09 18:05:16 +02:00
|
|
|
.muted {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
2020-05-21 18:22:30 +02:00
|
|
|
#sharebutton, #unsharebutton {
|
|
|
|
width: 8em;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
#unsharebutton {
|
|
|
|
margin-right: 0.4em;
|
|
|
|
}
|
|
|
|
|
2020-05-17 22:31:29 +02:00
|
|
|
#requestselect {
|
|
|
|
width: 8em;
|
|
|
|
text-align-last: center;
|
|
|
|
}
|
|
|
|
|
2020-04-24 19:38:21 +02:00
|
|
|
#main {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#users {
|
|
|
|
width: 5%;
|
|
|
|
margin-left: 2%;
|
|
|
|
border: 1px solid;
|
2020-04-25 20:02:33 +02:00
|
|
|
overflow-x: hidden;
|
2020-05-11 20:38:47 +02:00
|
|
|
min-width: 5em;
|
2020-04-24 19:38:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#chatbox {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chat {
|
|
|
|
display: flex;
|
|
|
|
width: 20%;
|
|
|
|
margin-left: 0.3em;
|
|
|
|
border: 1px solid;
|
|
|
|
height: 85vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#inputform {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#box {
|
|
|
|
height: 95%;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message, message-me {
|
|
|
|
margin: 0 0.5em 0 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-user {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-content {
|
|
|
|
line-height: 1.5;
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-me-asterisk {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-me-user {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-me-content {
|
|
|
|
}
|
|
|
|
|
|
|
|
#input {
|
2020-05-05 17:50:16 +02:00
|
|
|
margin-left: 0.5em;
|
2020-04-24 19:38:21 +02:00
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
resize: none;
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#input:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#inputbutton {
|
|
|
|
background-color: white;
|
|
|
|
border: none;
|
|
|
|
margin-right: 0.2em;
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#inputbutton:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#resizer {
|
|
|
|
width: 8px;
|
|
|
|
margin-left: -8px;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#resizer:hover {
|
|
|
|
cursor: ew-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
#peers {
|
|
|
|
margin-left: 1%;
|
2020-05-01 01:22:17 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
column-gap: 0.5%;
|
|
|
|
align-content: start;
|
2020-04-24 19:38:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.peer {
|
2020-05-01 01:22:17 +02:00
|
|
|
margin-top: auto;
|
2020-04-24 19:38:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.media {
|
2020-05-01 01:22:17 +02:00
|
|
|
width: 100%;
|
2020-04-24 19:38:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
text-align: center;
|
|
|
|
height: 2em;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2020-04-25 14:45:48 +02:00
|
|
|
.label-fallback {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2020-04-24 19:38:21 +02:00
|
|
|
#inputform {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#input {
|
|
|
|
width: 85%;
|
|
|
|
border: 1px solid;
|
|
|
|
}
|