75 lines
1.3 KiB
CSS
75 lines
1.3 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.
|
|
*/
|
|
|
|
.roomButton,
|
|
.headerButton {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: transparent;
|
|
padding: 0;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.roomButton {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50px;
|
|
background-color: rgba(111, 120, 130, 0.3);
|
|
}
|
|
|
|
.roomButton:hover {
|
|
background-color: #8d97a5;
|
|
}
|
|
|
|
.roomButton:active {
|
|
}
|
|
|
|
.roomButton.on {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.headerButton {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 32px;
|
|
}
|
|
|
|
.headerButton svg * {
|
|
fill: #8e99a4;
|
|
}
|
|
|
|
.headerButton:hover {
|
|
background-color: #8d97a5;
|
|
}
|
|
|
|
.headerButton:hover svg * {
|
|
fill: #394049;
|
|
}
|
|
|
|
.headerButton.on svg * {
|
|
fill: #0dbd8b;
|
|
}
|
|
|
|
.hangupButton,
|
|
.hangupButton:hover {
|
|
background-color: #ff5b55;
|
|
}
|
|
|
|
.screenshareButton.on svg * {
|
|
fill: #0dbd8b;
|
|
}
|