2019-06-16 15:21:20 +02:00
|
|
|
@import url('layout.css');
|
2020-05-03 01:08:53 +02:00
|
|
|
@import url('login.css');
|
2019-06-16 15:21:20 +02:00
|
|
|
@import url('left-panel.css');
|
|
|
|
@import url('room.css');
|
|
|
|
@import url('timeline.css');
|
|
|
|
@import url('avatar.css');
|
2020-04-30 18:28:21 +02:00
|
|
|
@import url('spinner.css');
|
2019-06-16 15:21:20 +02:00
|
|
|
|
2020-04-30 18:28:21 +02:00
|
|
|
.brawl {
|
2019-06-16 15:21:20 +02:00
|
|
|
margin: 0;
|
2020-04-29 10:10:20 +02:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, sans-serif,
|
|
|
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
2019-06-16 15:21:20 +02:00
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2020-05-05 23:18:31 +02:00
|
|
|
.hiddenWithLayout {
|
2020-04-30 18:28:21 +02:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2020-05-05 23:18:31 +02:00
|
|
|
.hidden {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionStatusView {
|
|
|
|
display: flex;
|
|
|
|
padding: 5px;
|
2019-06-16 15:21:20 +02:00
|
|
|
background-color: #555;
|
|
|
|
}
|
|
|
|
|
2020-05-05 23:18:31 +02:00
|
|
|
.SessionStatusView p {
|
|
|
|
margin: 0 10px;
|
2020-05-09 21:22:09 +02:00
|
|
|
word-break: break-all;
|
|
|
|
word-break: break-word;
|
2020-05-05 23:18:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.SessionStatusView button {
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
color: currentcolor;
|
|
|
|
text-decoration: underline;
|
2019-06-16 15:21:20 +02:00
|
|
|
}
|
2019-06-16 16:19:00 +02:00
|
|
|
|
2020-05-05 23:18:31 +02:00
|
|
|
|
2019-06-16 16:19:00 +02:00
|
|
|
.RoomPlaceholderView {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2019-09-08 10:40:05 +02:00
|
|
|
|
|
|
|
.SessionPickerView {
|
|
|
|
padding: 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView li {
|
|
|
|
margin: 0.4em 0;
|
|
|
|
font-size: 1.2em;
|
|
|
|
background-color: grey;
|
|
|
|
padding: 0.5em;
|
2019-10-13 08:29:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView .sessionInfo {
|
2019-09-08 10:40:05 +02:00
|
|
|
cursor: pointer;
|
2019-10-12 21:16:48 +02:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView li span.userId {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView li span.error {
|
|
|
|
margin: 0 20px;
|
2019-09-08 10:40:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.LoginView {
|
|
|
|
padding: 0.4em;
|
|
|
|
}
|
|
|
|
|
2019-11-22 09:46:19 +01:00
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2019-09-08 10:40:05 +02:00
|
|
|
.form > div {
|
|
|
|
margin: 0.4em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form input {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|