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.

options.css 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. #ragflow {
  2. font-family: "Segoe UI", Arial, sans-serif;
  3. margin: 0;
  4. padding: 0;
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. height: 600px;
  9. }
  10. #ragflow .window {
  11. display: flex;
  12. flex-direction: column;
  13. justify-content: space-between;
  14. flex: 1;
  15. overflow: hidden;
  16. }
  17. #ragflow #form-config {
  18. background-color: #fff;
  19. box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  20. display: flex;
  21. flex-direction: column;
  22. justify-content: space-between;
  23. overflow: hidden;
  24. }
  25. #ragflow .header {
  26. background-color: #fff;
  27. padding: 4px;
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: center;
  31. flex-direction: row;
  32. }
  33. #ragflow .header .title {
  34. font-size: 16px;
  35. }
  36. #ragflow .header .logo {
  37. width: 100px; /* Adjust size as needed */
  38. height: auto;
  39. margin-right: 10px;
  40. }
  41. #ragflow .content {
  42. padding: 20px;
  43. display: flex;
  44. flex-direction: column;
  45. justify-content: space-between;
  46. }
  47. #ragflow label {
  48. font-weight: bold;
  49. margin-bottom: 5px;
  50. }
  51. #ragflow input,
  52. #ragflow select {
  53. width: 100%;
  54. padding: 8px;
  55. margin-bottom: 15px;
  56. border: 1px solid #ccc;
  57. border-radius: 5px;
  58. box-sizing: border-box;
  59. }
  60. #ragflow button {
  61. background-color: #0078d4;
  62. color: #fff;
  63. padding: 10px;
  64. border: none;
  65. border-radius: 5px;
  66. cursor: pointer;
  67. font-size: 14px;
  68. }
  69. #ragflow button:hover {
  70. background-color: #005bb5;
  71. }
  72. #ragflow #config-button {
  73. display: flex;
  74. position: absolute;
  75. top: 2px;
  76. right: 2px;
  77. font-size: 22px;
  78. }
  79. #ragflow #config-button:hover {
  80. cursor: pointer;
  81. }