style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. table {
  3. display: flex;
  4. flex-flow: column;
  5. width: 100%;
  6. }
  7. thead {
  8. flex: 0 0 auto;
  9. }
  10. tbody {
  11. flex: 1 1 auto;
  12. display: block;
  13. overflow-y: auto;
  14. overflow-x: hidden;
  15. }
  16. tr {
  17. width: 100%;
  18. display: table;
  19. table-layout: fixed;
  20. }
  21. */
  22. .container {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: flex-start;
  26. gap: 20px;
  27. }
  28. th {
  29. background: white;
  30. position: sticky;
  31. top: 0; /* Don't forget this, required for the stickiness */
  32. }
  33. th, td {
  34. border-inline: 1px solid black; /*Add this*/
  35. }
  36. table {
  37. border-collapse: collapse;
  38. text-align: center;
  39. }
  40. .title {
  41. display: flex;
  42. flex-direction: row;
  43. justify-content: space-between;
  44. flex-wrap: wrap;
  45. align-items: center;
  46. width: 100%;
  47. }
  48. /*
  49. .logout-btn{
  50. align-self: center;
  51. }
  52. */
  53. /*.btn {
  54. margin: 20px;
  55. }
  56. #table {
  57. margin: 0 20px 0 20px;
  58. }*/
  59. /*#table-img {
  60. margin: 0 20px 0 20px;
  61. }*/
  62. .title h1 {
  63. color: #5a74b7;
  64. margin-top: 20px;
  65. margin-bottom: 20px;
  66. font-size: 63px;
  67. }
  68. #table {
  69. display: flex;
  70. align-items: flex-start;
  71. flex-direction: column;
  72. }
  73. #table-img {
  74. display: flex;
  75. align-items: flex-start;
  76. flex-direction: column;
  77. }
  78. #table table {
  79. overflow-y: auto;
  80. max-height: 400px;
  81. display: block;
  82. width: fit-content;
  83. }
  84. #table-img table {
  85. overflow-y: auto;
  86. max-height: 300px;
  87. display: block;
  88. width: fit-content;
  89. }
  90. /*.alert {
  91. margin: 10px 0 10px 0;
  92. }*/
  93. .table-img {
  94. height: 30px;
  95. }
  96. #response-msg {
  97. color: red;
  98. }
  99. #loading-field {
  100. display: none
  101. }
  102. .loader {
  103. margin-inline: 5px;
  104. margin-bottom: -8px;
  105. width: 25px;
  106. height: 25px;
  107. border: 5px solid #ffffff;
  108. border-bottom-color: transparent;
  109. border-radius: 50%;
  110. display: inline-block;
  111. box-sizing: border-box;
  112. animation: rotation 1s linear infinite;
  113. }
  114. .row-align{
  115. display: flex;
  116. flex-direction: row;
  117. }
  118. @keyframes rotation {
  119. 0% {
  120. transform: rotate(0deg);
  121. }
  122. 100% {
  123. transform: rotate(360deg);
  124. }
  125. }