element-call/src/room/PTTCallView.module.css

113 lines
1.5 KiB
CSS
Raw Normal View History

2022-04-23 01:05:48 +00:00
.pttCallView {
position: relative;
display: flex;
flex-direction: column;
2022-04-27 23:47:23 +00:00
justify-content: center;
2022-04-23 01:05:48 +00:00
overflow: hidden;
min-height: 100%;
position: fixed;
height: 100%;
width: 100%;
}
@media (hover: none) {
.pttCallView {
user-select: none;
}
}
2022-04-23 01:05:48 +00:00
.center {
width: 100%;
display: flex;
flex: 1;
flex-direction: column;
align-items: center;
}
.participants {
2022-04-27 23:47:23 +00:00
display: flex;
flex-direction: column;
margin: 20px;
2022-04-23 01:05:48 +00:00
}
.participants > p {
2022-05-04 10:24:25 +00:00
color: #a9b2bc;
2022-04-23 01:05:48 +00:00
margin-bottom: 8px;
2022-04-27 23:47:23 +00:00
}
.facepile {
align-self: center;
}
.talkingInfo {
display: flex;
flex-direction: column;
align-items: center;
2022-04-28 00:19:58 +00:00
margin-bottom: 20px;
2022-04-29 00:44:50 +00:00
height: 88px;
}
.speakerIcon {
margin-right: 8px;
2022-04-27 23:47:23 +00:00
}
.pttButtonContainer {
display: flex;
flex-direction: column;
align-items: center;
2022-04-28 00:19:58 +00:00
flex: 1;
justify-content: center;
}
.actionTip {
margin-top: 20px;
margin-bottom: 20px;
font-size: 17px;
2022-04-27 23:47:23 +00:00
}
.footer {
position: relative;
display: flex;
justify-content: center;
height: 64px;
2022-04-28 00:19:58 +00:00
margin-bottom: 20px;
2022-04-27 23:47:23 +00:00
}
.footer > * {
margin-right: 30px;
}
.footer > :last-child {
margin-right: 0px;
2022-04-28 00:19:58 +00:00
}
@media (min-width: 800px) {
.participants {
margin-bottom: 67px;
}
.talkingInfo {
margin-bottom: 38px;
}
.center {
margin-top: 48px;
}
.actionTip {
margin-top: 42px;
margin-bottom: 45px;
}
.pttButtonContainer {
2022-04-28 18:13:01 +00:00
flex: 0;
2022-04-28 00:19:58 +00:00
margin-bottom: 0;
justify-content: flex-start;
}
.footer {
flex: auto;
order: 4;
}
2022-05-04 10:24:25 +00:00
}