Files
element-call-custom/src/App.module.css
Robert Long f456265f0c More styling
2021-07-26 17:16:04 -07:00

133 lines
2.2 KiB
CSS

/*
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.
*/
.page {
margin: 0 auto;
max-width: 960px;
display: flex;
flex-direction: column;
padding: 0 20px;
}
.page input {
padding: 8px 4px;
font-size: 16px;
border-radius: 4px;
border: 1px solid #888;
}
.page input, .page button {
display: block;
margin-top: 16px;
}
.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;
}
}