2019-06-16 18:51:20 +05:30
|
|
|
@import url('layout.css');
|
2020-05-03 04:38:53 +05:30
|
|
|
@import url('login.css');
|
2019-06-16 18:51:20 +05:30
|
|
|
@import url('left-panel.css');
|
|
|
|
@import url('room.css');
|
|
|
|
@import url('timeline.css');
|
|
|
|
@import url('avatar.css');
|
2020-04-30 21:58:21 +05:30
|
|
|
@import url('spinner.css');
|
2019-06-16 18:51:20 +05:30
|
|
|
|
2020-04-30 21:58:21 +05:30
|
|
|
.brawl {
|
2019-06-16 18:51:20 +05:30
|
|
|
margin: 0;
|
2020-04-29 13:40:20 +05:30
|
|
|
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 18:51:20 +05:30
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2020-05-06 02:48:31 +05:30
|
|
|
.hiddenWithLayout {
|
2020-04-30 21:58:21 +05:30
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2020-05-06 02:48:31 +05:30
|
|
|
.hidden {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionStatusView {
|
|
|
|
display: flex;
|
|
|
|
padding: 5px;
|
2019-06-16 18:51:20 +05:30
|
|
|
background-color: #555;
|
|
|
|
}
|
|
|
|
|
2020-05-06 02:48:31 +05:30
|
|
|
.SessionStatusView p {
|
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionStatusView button {
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
color: currentcolor;
|
|
|
|
text-decoration: underline;
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|
2019-06-16 19:49:00 +05:30
|
|
|
|
2020-05-06 02:48:31 +05:30
|
|
|
|
2019-06-16 19:49:00 +05:30
|
|
|
.RoomPlaceholderView {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2019-09-08 14:10:05 +05:30
|
|
|
|
|
|
|
.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 11:59:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView .sessionInfo {
|
2019-09-08 14:10:05 +05:30
|
|
|
cursor: pointer;
|
2019-10-13 00:46:48 +05:30
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView li span.userId {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView li span.error {
|
|
|
|
margin: 0 20px;
|
2019-09-08 14:10:05 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.LoginView {
|
|
|
|
padding: 0.4em;
|
|
|
|
}
|
|
|
|
|
2019-11-22 14:16:19 +05:30
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2019-09-08 14:10:05 +05:30
|
|
|
.form > div {
|
|
|
|
margin: 0.4em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form input {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|