2016-09-13 15:47:22 +00:00
|
|
|
.ringing {
|
|
|
|
display: block;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: fixed;
|
2016-10-21 15:45:45 +00:00
|
|
|
z-index: $ringingZ;
|
2018-06-26 22:56:22 +00:00
|
|
|
@include transparentBg(#283447, 0.95);
|
2016-09-13 15:47:22 +00:00
|
|
|
|
2016-09-14 21:26:17 +00:00
|
|
|
&.solidBG {
|
|
|
|
background: $defaultBackground;
|
|
|
|
}
|
|
|
|
|
2016-09-13 15:47:22 +00:00
|
|
|
&__content {
|
|
|
|
position: absolute;
|
|
|
|
width: 400px;
|
|
|
|
height: 250px;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
margin-left: -200px;
|
|
|
|
margin-top: -125px;
|
|
|
|
text-align: center;
|
2018-06-26 22:56:22 +00:00
|
|
|
font-weight: normal;
|
|
|
|
color: #FFFFFF;
|
2016-09-13 15:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__avatar {
|
2018-06-26 22:56:22 +00:00
|
|
|
width: 128px;
|
|
|
|
height: 128px;
|
2016-09-13 15:47:22 +00:00
|
|
|
border-radius: 50%;
|
2018-06-26 22:56:22 +00:00
|
|
|
border: 2px solid #1B2638;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__status{
|
|
|
|
margin-top: 15px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
2016-09-13 15:47:22 +00:00
|
|
|
}
|
|
|
|
|
2018-06-26 22:56:22 +00:00
|
|
|
&__name {
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 32px;
|
2016-09-13 15:47:22 +00:00
|
|
|
}
|
2016-09-14 21:26:17 +00:00
|
|
|
}
|