Geen omschrijving
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 581B

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