| 123456789101112131415161718192021222324252627282930313233 |
- <!doctype html>
- <html>
- <head>
- <meta charset='utf-8' />
- <style type="text/css">
- .text-center {
- text-align: center;
- }
- .text-right {
- text-align: right;
- }
- .text-left {
- text-align: left;
- }
- table {
- border-collapse: collapse;
- page-break-inside:auto;
- }
- tr {
- font-size: 0.8em;
- page-break-inside:avoid; page-break-after:auto;
- border: 1px double black !important;
- }
- thead tr {
- background-color: black;
- color: white;
- }
- </style>
- </head>
- <body>
- <%= yield %>
- </body>
- </html>
|