pdf_base.pdf.erb 543 B

123456789101112131415161718192021222324252627282930313233
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset='utf-8' />
  5. <style type="text/css">
  6. .text-center {
  7. text-align: center;
  8. }
  9. .text-right {
  10. text-align: right;
  11. }
  12. .text-left {
  13. text-align: left;
  14. }
  15. table {
  16. border-collapse: collapse;
  17. page-break-inside:auto;
  18. }
  19. tr {
  20. font-size: 0.8em;
  21. page-break-inside:avoid; page-break-after:auto;
  22. border: 1px double black !important;
  23. }
  24. thead tr {
  25. background-color: black;
  26. color: white;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <%= yield %>
  32. </body>
  33. </html>