Files
jitsi-meet/css/ringing/_ringing.scss
Robert Pintilii 2c8dedcb85 ref(scss) Variables cleanup (#13521)
Remove some unused variables
Replace variables that are only used once with their value
2023-07-04 12:34:41 +03:00

46 lines
803 B
SCSS

.ringing {
display: block;
left: 0;
top: 0;
width: 100%;
height: 100%;
position: fixed;
z-index: 300;
@include transparentBg(#283447, 0.95);
&.solidBG {
background: #040404;
}
&__content {
position: absolute;
width: 400px;
height: 250px;
left: 50%;
top: 50%;
margin-left: -200px;
margin-top: -125px;
text-align: center;
font-weight: normal;
color: #FFFFFF;
}
&__avatar {
width: 128px;
height: 128px;
border-radius: 50%;
border: 2px solid #1B2638;
}
&__status{
margin-top: 15px;
font-size: 14px;
line-height: 20px;
}
&__name {
font-size: 24px;
line-height: 32px;
}
}