style.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /* General Styling */
  2. body {
  3. font-family: 'Roboto', sans-serif;
  4. margin: 0;
  5. padding: 0;
  6. background-color: #f4f4f9;
  7. color: #333;
  8. }
  9. h1 {
  10. text-align: center;
  11. color: #4A90E2;
  12. margin: 20px 0;
  13. }
  14. h2 {
  15. color: #4A90E2;
  16. margin: 10px 0;
  17. }
  18. /* Container Layout */
  19. .container {
  20. display: flex;
  21. flex-wrap: wrap;
  22. justify-content: space-between;
  23. gap: 20px;
  24. width: 90%;
  25. max-width: 1200px;
  26. margin: 0 auto;
  27. }
  28. /* Columns */
  29. .left-column {
  30. flex: 1;
  31. min-width: 300px;
  32. }
  33. .right-column {
  34. flex: 1;
  35. min-width: 300px;
  36. }
  37. /* Sections */
  38. .section {
  39. background: #fff;
  40. border: 1px solid #ddd;
  41. border-radius: 8px;
  42. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  43. padding: 20px;
  44. margin-bottom: 20px;
  45. }
  46. /* Buttons Inline */
  47. .button-group {
  48. display: flex;
  49. flex-wrap: wrap;
  50. gap: 10px;
  51. padding: 10px 15px;
  52. }
  53. button {
  54. background: #4A90E2;
  55. color: #fff;
  56. cursor: pointer;
  57. padding: 10px 15px;
  58. font-size: 1em;
  59. border: 1px solid #ddd;
  60. border-radius: 5px;
  61. outline: none;
  62. transition: all 0.3s ease;
  63. }
  64. button:hover {
  65. background: #357ABD;
  66. }
  67. /* Delete Button */
  68. .delete-button {
  69. background: #e74c3c; /* Red color */
  70. color: #fff;
  71. cursor: pointer;
  72. border: none;
  73. padding: 10px 15px;
  74. border-radius: 5px;
  75. font-size: 1em;
  76. transition: all 0.3s ease;
  77. }
  78. .delete-button:hover {
  79. background: #c0392b; /* Darker red on hover */
  80. }
  81. select, input[type="file"] {
  82. display: block;
  83. width: 100%;
  84. max-width: 300px;
  85. padding: 10px;
  86. margin: 10px 0;
  87. font-size: 1em;
  88. border: 1px solid #ddd;
  89. border-radius: 5px;
  90. outline: none;
  91. }
  92. /* File List */
  93. ul {
  94. list-style: none;
  95. padding: 0;
  96. margin: 0;
  97. }
  98. li {
  99. padding: 10px;
  100. border-bottom: 1px solid #ddd;
  101. cursor: pointer;
  102. transition: all 0.3s ease;
  103. }
  104. li:hover {
  105. background: #f1f1f1;
  106. }
  107. li.selected {
  108. background: #4A90E2;
  109. color: white;
  110. font-weight: bold;
  111. padding: 5px;
  112. border-radius: 5px;
  113. }
  114. /* Status Log */
  115. #status_log {
  116. position: fixed;
  117. bottom: 0;
  118. left: 0;
  119. right: 0;
  120. background: #fff;
  121. border-top: 1px solid #ddd;
  122. padding: 10px;
  123. max-height: 150px;
  124. overflow-y: auto;
  125. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  126. }
  127. #status_log p {
  128. margin: 0.5em 0;
  129. font-size: 0.9em;
  130. color: #444;
  131. }
  132. #theta_rho_files {
  133. max-height: 545px;
  134. overflow-y: auto;
  135. border: 1px solid #ddd;
  136. border-radius: 5px;
  137. background-color: #fff;
  138. padding: 10px;
  139. }
  140. /* Search Bar */
  141. #search_pattern {
  142. display: block;
  143. width: 100%;
  144. max-width: 300px;
  145. padding: 10px;
  146. margin: 10px 0;
  147. font-size: 1em;
  148. border: 1px solid #ddd;
  149. border-radius: 5px;
  150. outline: none;
  151. transition: all 0.3s ease;
  152. }
  153. #search_pattern:focus {
  154. border-color: #4A90E2;
  155. box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
  156. }
  157. /* Responsive Layout for Small Screens */
  158. @media (max-width: 768px) {
  159. .container {
  160. flex-direction: column; /* Stack columns vertically */
  161. }
  162. .left-column, .right-column {
  163. width: 100%;
  164. }
  165. #status_log {
  166. max-height: 300px;
  167. }
  168. }