Styling for video room

This commit is contained in:
Robert Long 2021-08-19 12:11:12 -07:00
commit cc59e42bba
40 changed files with 937 additions and 270 deletions

65
src/RoomButton.module.css Normal file
View file

@ -0,0 +1,65 @@
/*
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.
*/
.roomButton {
width: 50px;
height: 50px;
border-radius: 50px;
background-color: rgba(111, 120, 130, 0.3);
display: flex;
justify-content: center;
align-items: center;
padding: 0;
}
.roomButton:hover {
background-color: #8D97A5;
}
.roomButton:active {
}
.roomButton.on {
background-color: #ffffff;
}
.headerButton {
width: 32px;
height: 32px;
display: flex;
justify-content: center;
align-items: center;
background-color: transparent;
border-radius: 32px;
padding: 0;
}
.headerButton:hover {
background-color: #8D97A5;
}
.headerButton:hover svg * {
fill: #394049;
}
.headerButton.on svg * {
fill: #0DBD8B
}
.hangupButton, .hangupButton:hover {
background-color: #FF5B55;
}