eiru_reporting.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .reporting_view_header {
  2. display: flex;
  3. width: 100%;
  4. height: 80px;
  5. padding: 5px;
  6. }
  7. .reporting_view_header > h2 {
  8. font-weight: bold;
  9. font-size: 14pt !important;
  10. padding: 10px;
  11. }
  12. .reporting_view_header > .reporting_searcher {
  13. display: flex;
  14. flex-direction: row-reverse;
  15. padding: 5px;
  16. height: 35px;
  17. width: 100%;
  18. }
  19. .reporting_page_header {
  20. padding-bottom: 9px;
  21. margin: 25px 0 35px;
  22. border-bottom: 1px solid #eee;
  23. }
  24. .reporting_page_header > h1 > small {
  25. padding-left: 1.833em;
  26. font-size: 8pt;
  27. }
  28. .report_group {
  29. display: flex;
  30. flex-direction: row;
  31. flex-wrap: wrap;
  32. justify-content: center;
  33. width: 100%;
  34. height: 100%;
  35. }
  36. .report_item {
  37. padding: 1em 1em;
  38. margin: 1em 1em;
  39. width: 220px;
  40. height: 250px;
  41. border: 1px solid #d3d3d3;
  42. border-radius: 3px;
  43. box-shadow: 5px 5px 2px #d3d3d3;
  44. display: flex;
  45. flex-direction: column;
  46. }
  47. .report_item:hover {
  48. box-shadow: 3px 3px 2px #d3d3d3;
  49. transform: translateY(2px);
  50. }
  51. .report_title > h1 {
  52. text-align: center;
  53. font-size: 9pt;
  54. }
  55. .report_content {
  56. flex-grow: 1;
  57. margin: 0.8em 0;
  58. overflow-y: auto;
  59. }
  60. .report_content > p {
  61. }
  62. .report_action > button {
  63. width: 100%;
  64. }
  65. .sucursal{
  66. font-weight: bold;
  67. }