Ei kuvausta
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.

output.css 562B

123456789101112131415161718192021222324252627282930313233
  1. .page-background {
  2. background: rgb(204,204,204);
  3. }
  4. body {
  5. margin: 0;
  6. padding: 0;
  7. }
  8. .page-preview {
  9. background: white;
  10. margin: 0 auto;
  11. margin-bottom: 16px;
  12. box-shadow: 0 0 8px rgba(0,0,0,0.5);
  13. }
  14. @media print {
  15. .page-preview {
  16. margin: 0;
  17. padding: 0;
  18. border: 0;
  19. box-shadow: none;
  20. background-color: white;
  21. }
  22. .page-background {
  23. margin: 0;
  24. padding: 0;
  25. border: 0;
  26. box-shadow: none;
  27. /* Set the background to gray to visualize the page size in the print preview */
  28. background-color: gray;
  29. }
  30. }