invoice.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*========================================
  2. INVOICE PAGE STYLE
  3. =========================================*/
  4. .invoice-recieved {
  5. text-align: left;
  6. display: -webkit-box;
  7. display: -ms-flexbox;
  8. display: flex;
  9. -webkit-box-align: start;
  10. -ms-flex-align: start;
  11. align-items: flex-start;
  12. -webkit-box-pack: start;
  13. -ms-flex-pack: start;
  14. justify-content: flex-start;
  15. -webkit-box-pack: justify;
  16. -ms-flex-pack: justify;
  17. justify-content: space-between;
  18. }
  19. .invoice-recieved h6 {
  20. text-transform: capitalize;
  21. }
  22. .invoice-recieved h6 span {
  23. display: block;
  24. font-weight: 400;
  25. margin-top: 10px;
  26. }
  27. .invoice-details li {
  28. display: -webkit-box;
  29. display: -ms-flexbox;
  30. display: flex;
  31. -webkit-box-align: start;
  32. -ms-flex-align: start;
  33. align-items: flex-start;
  34. -webkit-box-pack: start;
  35. -ms-flex-pack: start;
  36. justify-content: flex-start;
  37. -webkit-box-pack: justify;
  38. -ms-flex-pack: justify;
  39. justify-content: space-between;
  40. margin-bottom: 20px;
  41. }
  42. .invoice-details li:last-child {
  43. margin-bottom: 0px;
  44. }
  45. .invoice-details li h6 {
  46. line-height: 26px;
  47. white-space: nowrap;
  48. }
  49. .invoice-details li h6 small {
  50. font-size: 14px;
  51. font-weight: 400;
  52. margin-left: 3px;
  53. }
  54. .invoice-details li p {
  55. width: 250px;
  56. text-align: right;
  57. }
  58. .table-scroll {
  59. padding: 35px;
  60. border-radius: 8px;
  61. background: var(--white);
  62. }
  63. .back-home {
  64. text-align: center;
  65. }
  66. .back-home a {
  67. margin-top: 10px;
  68. font-weight: 500;
  69. color: var(--primary);
  70. }
  71. .back-home a:hover {
  72. text-decoration: underline;
  73. }
  74. @media (max-width: 767px) {
  75. .invoice-recieved {
  76. -ms-flex-wrap: wrap;
  77. flex-wrap: wrap;
  78. }
  79. .invoice-recieved h6 {
  80. margin-bottom: 25px;
  81. margin-right: 25px;
  82. }
  83. }