Update style.css
Browse files
style.css
CHANGED
@@ -18,6 +18,34 @@ h1 {
|
|
18 |
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
19 |
}
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
#questionInput {
|
22 |
width: 100%;
|
23 |
padding: 12px;
|
@@ -51,11 +79,6 @@ h1 {
|
|
51 |
min-height: 100px;
|
52 |
}
|
53 |
|
54 |
-
#status {
|
55 |
-
color: #666;
|
56 |
-
font-style: italic;
|
57 |
-
}
|
58 |
-
|
59 |
#response {
|
60 |
margin-top: 12px;
|
61 |
white-space: pre-wrap;
|
|
|
18 |
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
19 |
}
|
20 |
|
21 |
+
/* Loading styles */
|
22 |
+
#loadingContainer {
|
23 |
+
text-align: center;
|
24 |
+
padding: 40px 20px;
|
25 |
+
}
|
26 |
+
|
27 |
+
.progress-bar {
|
28 |
+
width: 100%;
|
29 |
+
height: 20px;
|
30 |
+
background-color: #f0f0f0;
|
31 |
+
border-radius: 10px;
|
32 |
+
overflow: hidden;
|
33 |
+
margin-bottom: 10px;
|
34 |
+
}
|
35 |
+
|
36 |
+
#progressFill {
|
37 |
+
width: 0%;
|
38 |
+
height: 100%;
|
39 |
+
background-color: #007AFF;
|
40 |
+
transition: width 0.3s ease;
|
41 |
+
}
|
42 |
+
|
43 |
+
#loadingText {
|
44 |
+
color: #666;
|
45 |
+
font-size: 16px;
|
46 |
+
}
|
47 |
+
|
48 |
+
/* Chat interface styles */
|
49 |
#questionInput {
|
50 |
width: 100%;
|
51 |
padding: 12px;
|
|
|
79 |
min-height: 100px;
|
80 |
}
|
81 |
|
|
|
|
|
|
|
|
|
|
|
82 |
#response {
|
83 |
margin-top: 12px;
|
84 |
white-space: pre-wrap;
|