| 123456789101112131415161718192021222324252627282930 |
- <!doctype html>
- <html>
- <head>
- <meta charset='utf-8' />
- <style type="text/css">
- @media print {
- .pdf-body {
- width: 62mm;
- height: auto;
- }
- }
- body {
- width: 60mm;
- height: auto;
- font-family: 'OpenSansRegular';
- font-size: 14px;
- }
- .text-center {
- text-align: center;
- }
- .text-right {
- text-align: right;
- }
- </style>
- </head>
- <body>
- <%= yield %>
- </body>
- </html>
|