jquery.modal.css 942 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .modal {
  2. display: none;
  3. width: 400px;
  4. background: #fff;
  5. padding: 15px 30px;
  6. -webkit-border-radius: 8px;
  7. -moz-border-radius: 8px;
  8. -o-border-radius: 8px;
  9. -ms-border-radius: 8px;
  10. border-radius: 8px;
  11. -webkit-box-shadow: 0 0 10px #000;
  12. -moz-box-shadow: 0 0 10px #000;
  13. -o-box-shadow: 0 0 10px #000;
  14. -ms-box-shadow: 0 0 10px #000;
  15. box-shadow: 0 0 10px #000;
  16. }
  17. .modal a.close-modal {
  18. position: absolute;
  19. top: -12.5px;
  20. right: -12.5px;
  21. display: block;
  22. width: 30px;
  23. height: 30px;
  24. text-indent: -9999px;
  25. background: url(/images/close.png) no-repeat 0 0;
  26. }
  27. .modal-spinner {
  28. display: none;
  29. width: 64px;
  30. height: 64px;
  31. position: fixed;
  32. top: 50%;
  33. left: 50%;
  34. margin-right: -32px;
  35. margin-top: -32px;
  36. background: url(/images/spinner.gif) #111 no-repeat center center;
  37. -webkit-border-radius: 8px;
  38. -moz-border-radius: 8px;
  39. -o-border-radius: 8px;
  40. -ms-border-radius: 8px;
  41. border-radius: 8px;
  42. }