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

123456789101112131415161718192021222324252627282930313233343536
  1. .ringing {
  2. display: block;
  3. left: 0;
  4. top: 0;
  5. width: 100%;
  6. height: 100%;
  7. position: fixed;
  8. z-index: $overlayZ;
  9. background: linear-gradient(transparent, #000);
  10. opacity: 0.8;
  11. &__content {
  12. position: absolute;
  13. width: 400px;
  14. height: 250px;
  15. left: 50%;
  16. top: 50%;
  17. margin-left: -200px;
  18. margin-top: -125px;
  19. font-weight: 400;
  20. font-size: 14px;
  21. text-align: center;
  22. }
  23. &__avatar {
  24. width: 100px;
  25. height: 100px;
  26. border-radius: 50%;
  27. }
  28. &__caller-info {
  29. .mention {
  30. color: #333;
  31. }
  32. }
  33. }