material.css 735 B

123456789101112131415161718192021222324252627282930313233343536
  1. div.sharephone{
  2. display: block;
  3. width: 74%;
  4. padding: 30px 0;
  5. text-align: center;
  6. font-size: 14px;
  7. background-color: #fff;
  8. border-radius: 6px;
  9. box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.3);
  10. position: fixed;
  11. top: 50%;
  12. left: 50%;
  13. z-index: 999;
  14. transform: translateX(-50%) translateY(-50%);
  15. }
  16. div.sharephone img.close_icon{
  17. display: block;
  18. width: 20px;
  19. position: absolute;
  20. top: 4px;
  21. right: 4px;
  22. z-index: 9;
  23. }
  24. button.copyphone{
  25. display: block;
  26. width: auto;
  27. padding: 0 16px;
  28. background-color: #249efb;
  29. color: #fff;
  30. margin: 20px auto 0;
  31. font-size: 14px;
  32. height: 32px;
  33. line-height: 32px;
  34. border: unset;
  35. border-radius: 4px;
  36. }