labels.html.erb 503 B

123456789101112131415161718192021222324252627282930
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset='utf-8' />
  5. <style type="text/css">
  6. @media print {
  7. .pdf-body {
  8. width: 62mm;
  9. height: auto;
  10. }
  11. }
  12. body {
  13. width: 58mm;
  14. height: auto;
  15. font-family: 'OpenSansRegular';
  16. font-size: 11px;
  17. }
  18. .text-center {
  19. text-align: center;
  20. }
  21. .text-right {
  22. text-align: right;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <%= yield %>
  28. </body>
  29. </html>