You are here

commerce_invoice.entityprint.css in Commerce Invoice 8.2

div.invoice-header {
  padding: 20px 0;
  position: relative;
  width: 100%;
}
table {
  border-spacing: 0;
}
table td {
  vertical-align: top;
}
table.fullwidth {
  width: 100%;
}
table.invoice-table {
  border: 1px solid #cccccc;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: 0;
}
table.invoice-table td {
  border: 1px solid #ccc;
  padding: 5px;
  white-space: nowrap;
}
table.invoice-table tr td:first-child {
  background: #eee;
}
div.billing-information h3 {
  margin: 0 0 10px 0;
}
div.billing-information p.address {
  margin: 0;
}
div.invoice-items-container {
  padding: 30px 0;
}
table.invoice-items {
  border: 1px solid #cccccc;
  border-collapse: collapse;
  margin: 0;
  width: 100%;
}
table.invoice-items th {
  background: #eee;
  border: 1px solid #ccc;
  padding: 5px;
  text-align: left;
}
table.invoice-items td {
  border: 1px solid #ccc;
  padding: 8px;
}
div.invoice-totals-container table.table-container {
  height: 150px;
}
div.invoice-totals-container table tr {
  text-align: right;
}
tr.invoice-total {
  font-size: 24px;
}
div.invoice-payment-terms {
  margin-top: 20px;
}
div.invoice-footer {
  border-top: 1px solid #ccc;
  margin-top: 20px;
  padding-top: 10px;
}

File

css/commerce_invoice.entityprint.css
View source
  1. div.invoice-header {
  2. padding: 20px 0;
  3. position: relative;
  4. width: 100%;
  5. }
  6. table {
  7. border-spacing: 0;
  8. }
  9. table td {
  10. vertical-align: top;
  11. }
  12. table.fullwidth {
  13. width: 100%;
  14. }
  15. table.invoice-table {
  16. border: 1px solid #cccccc;
  17. border-collapse: collapse;
  18. margin-left: auto;
  19. margin-right: 0;
  20. }
  21. table.invoice-table td {
  22. border: 1px solid #ccc;
  23. padding: 5px;
  24. white-space: nowrap;
  25. }
  26. table.invoice-table tr td:first-child {
  27. background: #eee;
  28. }
  29. div.billing-information h3 {
  30. margin: 0 0 10px 0;
  31. }
  32. div.billing-information p.address {
  33. margin: 0;
  34. }
  35. div.invoice-items-container {
  36. padding: 30px 0;
  37. }
  38. table.invoice-items {
  39. border: 1px solid #cccccc;
  40. border-collapse: collapse;
  41. margin: 0;
  42. width: 100%;
  43. }
  44. table.invoice-items th {
  45. background: #eee;
  46. border: 1px solid #ccc;
  47. padding: 5px;
  48. text-align: left;
  49. }
  50. table.invoice-items td {
  51. border: 1px solid #ccc;
  52. padding: 8px;
  53. }
  54. div.invoice-totals-container table.table-container {
  55. height: 150px;
  56. }
  57. div.invoice-totals-container table tr {
  58. text-align: right;
  59. }
  60. tr.invoice-total {
  61. font-size: 24px;
  62. }
  63. div.invoice-payment-terms {
  64. margin-top: 20px;
  65. }
  66. div.invoice-footer {
  67. border-top: 1px solid #ccc;
  68. margin-top: 20px;
  69. padding-top: 10px;
  70. }