You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

layout.blade.php 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>{{ $report->getTitle() }}</title>
  7. <style>
  8. .font-bold {
  9. font-weight: bold;
  10. }
  11. .category-header-row > td,
  12. .type-header-row > td {
  13. background-color: #f3f4f6;
  14. font-weight: bold;
  15. }
  16. .category-summary-row > td,
  17. .table-footer-row > td,
  18. .type-summary-row > td {
  19. background-color: #ffffff;
  20. font-weight: bold;
  21. }
  22. .company-name {
  23. font-size: 1.125rem;
  24. font-weight: bold;
  25. }
  26. .date-range {
  27. font-size: 0.875rem;
  28. }
  29. .header {
  30. color: #374151;
  31. margin-bottom: 1rem;
  32. }
  33. .header div + div {
  34. margin-top: 0.5rem;
  35. }
  36. .spacer-row > td {
  37. height: 0.75rem;
  38. }
  39. .table-body tr {
  40. background-color: #ffffff;
  41. }
  42. .table-class {
  43. border-collapse: collapse;
  44. table-layout: auto;
  45. width: 100%;
  46. }
  47. .table-class .type-row-indent {
  48. padding-left: 1.5rem;
  49. }
  50. .table-class td,
  51. .table-class th {
  52. border-bottom: 1px solid #d1d5db;
  53. color: #374151;
  54. font-size: 0.75rem;
  55. line-height: 1rem;
  56. padding: 0.75rem;
  57. }
  58. .table-head {
  59. display: table-row-group;
  60. }
  61. .text-center {
  62. text-align: center;
  63. }
  64. .text-left {
  65. text-align: left;
  66. }
  67. .text-right {
  68. text-align: right;
  69. }
  70. .title {
  71. font-size: 1.5rem;
  72. }
  73. .table-class .underline-bold {
  74. border-bottom: 2px solid #374151;
  75. }
  76. .table-class .underline-thin {
  77. border-bottom: 1px solid #374151;
  78. }
  79. .whitespace-normal {
  80. white-space: normal;
  81. }
  82. .whitespace-nowrap {
  83. white-space: nowrap;
  84. }
  85. table tfoot {
  86. display: table-row-group;
  87. }
  88. </style>
  89. </head>
  90. <body>
  91. @yield('content')
  92. </body>
  93. </html>