receipt.html.erb 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset='utf-8' />
  5. <style type="text/css">
  6. @media print {
  7. .pdf-body {
  8. border: 2px solid #FF0000;
  9. width: 80mm;
  10. height: auto;
  11. }
  12. }
  13. body {
  14. width: 80mm;
  15. height: auto;
  16. font-family: 'OpenSansRegular';
  17. font-size: 11px;
  18. }
  19. .text-center {
  20. text-align: center;
  21. }
  22. .text-right {
  23. text-align: right;
  24. }
  25. .products {
  26. margin-top: 10px;
  27. /*border-collapse: collapse;*/
  28. /*border-spacing: 0;*/
  29. }
  30. .products > table {
  31. width: 100%;
  32. border-bottom: 1px solid black;
  33. }
  34. .totals {
  35. margin-top: 0px;
  36. }
  37. .totals > table{
  38. width: 55%;
  39. float: right;
  40. }
  41. .resume {
  42. margin-top: 20px;
  43. }
  44. .totals-reserved {
  45. border-top:black 1px dotted;
  46. }
  47. .totals-reserved > table{
  48. width: 55%;
  49. float: right;
  50. }
  51. </style>
  52. </head>
  53. <body>
  54. <%= yield %>
  55. </body>
  56. </html>