2020-04-15 13:13:43 +00:00
|
|
|
#lobby-screen {
|
2020-05-20 08:25:31 +00:00
|
|
|
.content {
|
2020-04-15 13:13:43 +00:00
|
|
|
|
2020-05-20 08:25:31 +00:00
|
|
|
.container {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-04-15 13:13:43 +00:00
|
|
|
|
2020-05-20 08:25:31 +00:00
|
|
|
.spinner {
|
|
|
|
margin: 30px;
|
2020-04-15 13:13:43 +00:00
|
|
|
}
|
2021-03-29 08:42:04 +00:00
|
|
|
|
2020-05-20 08:25:31 +00:00
|
|
|
.joining-message {
|
|
|
|
margin: 10px;
|
2020-04-15 13:13:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-20 08:25:31 +00:00
|
|
|
#lobby-section {
|
2020-04-15 13:13:43 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2020-06-25 13:44:17 +00:00
|
|
|
.description {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
2020-05-20 08:25:31 +00:00
|
|
|
.control-row {
|
2020-04-15 13:13:43 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2020-05-20 08:25:31 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
margin-top: 15px;
|
2020-04-15 13:13:43 +00:00
|
|
|
|
2020-05-20 08:25:31 +00:00
|
|
|
label {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
2020-04-15 13:13:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#knocking-participant-list {
|
|
|
|
background-color: $newToolbarBackgroundColor;
|
|
|
|
border: 1px solid rgba(255, 255, 255, .4);
|
|
|
|
border-radius: 8px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
left: 0;
|
|
|
|
margin: 20px;
|
|
|
|
position: fixed;
|
|
|
|
top: 20;
|
|
|
|
transition: top 1s ease;
|
2021-03-29 08:42:04 +00:00
|
|
|
z-index: $toolbarZ + 1;
|
2020-04-15 13:13:43 +00:00
|
|
|
|
|
|
|
&.toolbox-visible {
|
|
|
|
// Same as toolbox subject position
|
|
|
|
top: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
background-color: rgba(0, 0, 0, .2);
|
|
|
|
font-size: 1.2em;
|
|
|
|
padding: 15px
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
align-self: stretch;
|
|
|
|
margin: 8px 0;
|
|
|
|
padding: 12px;
|
|
|
|
transition: .2s transform ease;
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
transform: scale(1.05);
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.borderLess {
|
|
|
|
background-color: transparent;
|
|
|
|
border-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.primary {
|
|
|
|
background-color: rgb(3, 118, 218);
|
|
|
|
border-width: 0;
|
|
|
|
}
|
|
|
|
}
|
2020-05-20 08:25:31 +00:00
|
|
|
}
|
2021-03-29 08:42:04 +00:00
|
|
|
|
|
|
|
.knocking-participants-container {
|
|
|
|
list-style-type: none;
|
|
|
|
max-height: 600px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
padding: 0 15px 15px 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.knocking-participant {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
margin: 8px 0;
|
|
|
|
|
|
|
|
.details {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
margin: 0 30px 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
align-self: unset;
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 300px) {
|
|
|
|
#knocking-participant-list {
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.knocking-participant {
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.details {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|