1 .ringing { 2 display: block; 3 left: 0; 4 top: 0; 5 width: 100%; 6 height: 100%; 7 position: fixed; 8 z-index: 300; 9 @include transparentBg(#283447, 0.95); 10 11 &.solidBG { 12 background: #040404; 13 } 14 15 &__content { 16 position: absolute; 17 width: 400px; 18 height: 250px; 19 left: 50%; 20 top: 50%; 21 margin-left: -200px; 22 margin-top: -125px; 23 text-align: center; 24 font-weight: normal; 25 color: #FFFFFF; 26 } 27 28 &__avatar { 29 width: 128px; 30 height: 128px; 31 border-radius: 50%; 32 border: 2px solid #1B2638; 33 } 34 35 &__status{ 36 margin-top: 15px; 37 font-size: 14px; 38 line-height: 20px; 39 } 40 41 &__name { 42 font-size: 24px; 43 line-height: 32px; 44 } 45 }