Finish splitting up components

This commit is contained in:
Robert Long 2021-07-27 12:27:59 -07:00
commit 4b0bb13f1e
8 changed files with 343 additions and 243 deletions

114
src/Room.module.css Normal file
View file

@ -0,0 +1,114 @@
/*
Copyright 2021 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
.room {
position: fixed;
display: flex;
flex-direction: column;
width: 100vw;
height: 100vh;
overflow: hidden;
}
.header {
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 64px;
}
.userNav {
position: absolute;
right: 0;
padding: 0 8px;
}
.joinRoom {
display: flex;
flex-direction: column;
align-items: center;
}
.joinRoom ul {
margin-top: 0;
padding-left: 0;
}
.joinRoom button {
border: none;
background: green;
color: white;
font-size: 16px;
font-weight: bold;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
}
.joinRoom button:hover, .joinRoom button:active {
background: darkgreen;
}
.centerMessage {
display: flex;
justify-content: center;
align-items: center;
}
.centerMessage p {
display: block;
}
.roomContainer {
overflow: hidden;
display: flex;
flex: 1;
flex-direction: column;
gap: 2px;
}
.participant {
display: flex;
position: relative;
flex: 1;
flex-shrink: 1;
min-height: 0;
background-color: black;
}
.participant video {
max-height: 100%;
z-index: 0;
display: block;
margin: auto;
max-width: 100%;
}
.participantLabel {
position: absolute;
bottom: 0;
right: 0;
padding: 8px 16px;
background: rgba(0, 0, 0, 0.2);
}
@media(min-width: 800px) {
.roomContainer {
flex-direction: row;
}
}