1
Fork 0
galene/static/sfu.css

198 lines
2.2 KiB
CSS
Raw Normal View History

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
}
.userform-invisible {
display: none;
}
.disconnect-invisible {
display: none;
}
.error {
color: red;
font-weight: bold;
}
.noerror {
display: none;
}
#optionsdiv {
margin-bottom: 4px;
}
#videoselect {
width: 8em;
text-align-last: center;
margin-right: 0.4em;
}
#audioselect {
width: 8em;
text-align-last: center;
margin-right: 0.4em;
}
#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 {
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;
}