invoice.less 580 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. Page: Invoice
  3. */
  4. .invoice {
  5. position: relative;
  6. width: 90%;
  7. margin: 10px auto;
  8. background: #fff;
  9. border: 1px solid #f4f4f4;
  10. }
  11. .invoice-title {
  12. margin-top: 0;
  13. }
  14. /* Enhancement for printing */
  15. @media print {
  16. .invoice {
  17. width: 100%;
  18. border: 0;
  19. margin: 0;
  20. padding: 0;
  21. }
  22. .invoice-col {
  23. float: left;
  24. width: 33.3333333%;
  25. }
  26. .table-responsive {
  27. overflow: auto;
  28. > .table tr th,
  29. > .table tr td {
  30. white-space: normal!important;
  31. }
  32. }
  33. }