print-preview.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #print-modal {
  2. background: #FFF;
  3. position: absolute;
  4. left: 50%;
  5. margin: 0 0 0 -465px;
  6. padding: 0 38px;
  7. width: 1000px;
  8. box-shadow: 0 0 20px #000;
  9. -moz-box-shadow: 0 0 20px #000;
  10. -webkit-box-shadow: 0 0 10px #000;
  11. }
  12. #print-modal-content {
  13. margin: 68px 0;
  14. border: none;
  15. height: 100%;
  16. overflow: hidden;
  17. width: 100%;
  18. }
  19. #print-modal-controls {
  20. border: 1px solid #ccc;
  21. border-radius: 8px;
  22. -webkit-border-radius: 8px;
  23. -moz-border-radius: 8px;
  24. top: 15px;
  25. left: 50%;
  26. margin: 0 0 0 -81px;
  27. position: fixed;
  28. padding: 5px 0;
  29. background: rgba(250, 250, 250, 0.75);
  30. }
  31. #print-modal-controls a {
  32. color: #FFF;
  33. display: block;
  34. float: left;
  35. height: 32px;
  36. text-decoration: none;
  37. text-indent: -999em;
  38. width: 80px;
  39. }
  40. #print-modal-controls a:hover {
  41. opacity: 0.75;
  42. }
  43. #print-modal-controls a.print {
  44. background: url(icon-print.png) no-repeat 50% 50%;
  45. }
  46. #print-modal-controls a.close {
  47. background: url(icon-close.png) no-repeat 50% 50%;
  48. }