No Description
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.

page.css 801B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. body {
  2. background: rgb(204,204,204);
  3. }
  4. page[size="A4"] {
  5. background: white;
  6. width: 210mm;
  7. height: 297mm;
  8. display: block;
  9. margin: 0 auto;
  10. margin-bottom: 16px;
  11. box-shadow: 0 0 8px rgba(0,0,0,0.5);
  12. display: flex;
  13. align-content: center;
  14. justify-content: center;
  15. flex-direction: row;
  16. flex-wrap: wrap;
  17. page-break-after: always;
  18. }
  19. #output-frame {
  20. border: 0;
  21. width: 100%;
  22. }
  23. @media print {
  24. body, page[size="A4"] {
  25. margin: 0;
  26. box-shadow: 0;
  27. background-color: white;
  28. }
  29. #input-container {
  30. display: none;
  31. }
  32. #output-container {
  33. margin: 0;
  34. padding: 0;
  35. }
  36. }
  37. .input-button {
  38. display:block;
  39. height: 40px;
  40. font-size: 24px;
  41. width: 100%;
  42. margin-bottom: 10px;
  43. }
  44. .input-data {
  45. width: 100%;
  46. }