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

12345678910111213141516171819202122232425262728293031323334353637
  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. background: $defaultBackground; /* Old browsers */
  11. opacity: 0.8;
  12. &__content {
  13. position: absolute;
  14. width: 400px;
  15. height: 250px;
  16. left: 50%;
  17. top: 50%;
  18. margin-left: -200px;
  19. margin-top: -125px;
  20. font-weight: 400;
  21. font-size: 14px;
  22. text-align: center;
  23. }
  24. &__avatar {
  25. width: 100px;
  26. height: 100px;
  27. border-radius: 50%;
  28. }
  29. &__caller-info {
  30. .mention {
  31. color: #333;
  32. }
  33. }
  34. }