print-preview.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #print-modal {
  2. background: #FFF;
  3. position: absolute;
  4. left: calc(50% - 400px);
  5. margin: 10px auto;
  6. padding: 0 70px;
  7. width: 794px;
  8. -moz-box-shadow: 0 0 20px #000;
  9. -webkit-box-shadow: 0 0 10px #000;
  10. box-shadow: 0 0 20px #000;
  11. }
  12. #print-modal-content {
  13. margin: 70px 0 10px;
  14. border: none;
  15. /*height: 100%;
  16. overflow: hidden;*/
  17. width: 100%;
  18. }
  19. #print-modal-controls {
  20. border: 1px solid #583d9c;
  21. -webkit-border-radius: 8px;
  22. -moz-border-radius: 8px;
  23. border-radius: 8px;
  24. top: 25px;
  25. left: calc(50% - 300px);
  26. position: fixed;
  27. margin: 0 auto;
  28. padding: 5px 0;
  29. color: #fff;
  30. text-align: center;
  31. }
  32. #print-modal-controls a {
  33. width:300px;
  34. height: 32px;
  35. line-height: 32px;
  36. font-size: 14px;
  37. display: block;
  38. padding: 0;
  39. float: left;
  40. color: #fff;
  41. background: #583d9c;
  42. text-decoration: none;
  43. }
  44. #print-modal-controls a:hover {
  45. background: #683d9c;
  46. }
  47. #print-modal-controls a.print {
  48. border-right: 1px solid #fff;
  49. }
  50. #print-modal-controls a.close {
  51. border-left: 1px solid #fff;
  52. }
  53. /*#print-modal-controls a:hover {
  54. opacity: 0.75;
  55. }
  56. #print-modal-controls a.print {
  57. background: url(images/icon-print.png) no-repeat 50% 50%;
  58. }
  59. #print-modal-controls a.close {
  60. background: url(images/icon-close.png) no-repeat 50% 50%;
  61. }*/
  62. .modal-backdrop {
  63. position: fixed;
  64. top: 0;
  65. right: 0;
  66. bottom: 0;
  67. left: 0;
  68. background-color: #583d9c;
  69. background-color: rgba(88, 61, 156,.4);
  70. z-index: 1040;
  71. opacity: .3;
  72. cursor: wait;
  73. }