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 739B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. background: linear-gradient(transparent, #000);
  10. opacity: 0.8;
  11. &.solidBG {
  12. background: $defaultBackground;
  13. opacity: 1;
  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. font-weight: 400;
  24. font-size: 14px;
  25. text-align: center;
  26. }
  27. &__avatar {
  28. width: 100px;
  29. height: 100px;
  30. border-radius: 50%;
  31. }
  32. &__caller-info {
  33. .mention {
  34. color: #333;
  35. }
  36. }
  37. }