2019-06-16 15:21:20 +02:00
|
|
|
@import url('layout.css');
|
|
|
|
@import url('left-panel.css');
|
|
|
|
@import url('room.css');
|
|
|
|
@import url('timeline.css');
|
|
|
|
@import url('avatar.css');
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
font-family: sans-serif;
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SyncStatusBar {
|
|
|
|
background-color: #555;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SyncStatusBar_shown {
|
|
|
|
display: unset;
|
|
|
|
}
|
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;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.LoginView {
|
|
|
|
padding: 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form > div {
|
|
|
|
margin: 0.4em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form input {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|