You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_ringing.scss 820B

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