Spaces:
Sleeping
Sleeping
Update static/styles.css
Browse files- static/styles.css +205 -234
static/styles.css
CHANGED
@@ -1,234 +1,205 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
margin
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
color: #
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
}
|
49 |
-
|
50 |
-
.
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
color: #
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
}
|
103 |
-
|
104 |
-
.
|
105 |
-
|
106 |
-
|
107 |
-
border-radius:
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
.
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
}
|
123 |
-
|
124 |
-
.
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
.
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
}
|
149 |
-
|
150 |
-
.
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
}
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
}
|
193 |
-
|
194 |
-
.
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
}
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
}
|
206 |
-
|
207 |
-
@keyframes pulse {
|
208 |
-
0% { transform: scale(1); }
|
209 |
-
50% { transform: scale(1.2); }
|
210 |
-
100% { transform: scale(1); }
|
211 |
-
}
|
212 |
-
|
213 |
-
.typing-indicator {
|
214 |
-
display: flex;
|
215 |
-
gap: 4px;
|
216 |
-
padding: 8px;
|
217 |
-
}
|
218 |
-
|
219 |
-
.typing-dot {
|
220 |
-
width: 8px;
|
221 |
-
height: 8px;
|
222 |
-
background-color: #90949c; /* Gray typing dots */
|
223 |
-
border-radius: 50%;
|
224 |
-
animation: typing 1.4s infinite ease-in-out;
|
225 |
-
}
|
226 |
-
|
227 |
-
.typing-dot:nth-child(1) { animation-delay: 200ms; }
|
228 |
-
.typing-dot:nth-child(2) { animation-delay: 300ms; }
|
229 |
-
.typing-dot:nth-child(3) { animation-delay: 400ms; }
|
230 |
-
|
231 |
-
@keyframes typing {
|
232 |
-
0%, 100% { transform: translateY(0); }
|
233 |
-
50% { transform: translateY(-10px); }
|
234 |
-
}
|
|
|
1 |
+
/* Base styles */
|
2 |
+
* {
|
3 |
+
margin: 0;
|
4 |
+
padding: 0;
|
5 |
+
box-sizing: border-box;
|
6 |
+
}
|
7 |
+
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
background-color: #181818;
|
11 |
+
color: #e0e0e0;
|
12 |
+
min-height: 100vh;
|
13 |
+
display: flex;
|
14 |
+
flex-direction: column;
|
15 |
+
}
|
16 |
+
|
17 |
+
/* Chat container */
|
18 |
+
.chat-container {
|
19 |
+
margin: 20px auto;
|
20 |
+
width: 95%;
|
21 |
+
max-width: 1200px;
|
22 |
+
height: 90vh;
|
23 |
+
background-color: #242424;
|
24 |
+
border-radius: 12px;
|
25 |
+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
|
26 |
+
display: flex;
|
27 |
+
flex-direction: column;
|
28 |
+
}
|
29 |
+
|
30 |
+
/* Messages section */
|
31 |
+
.chat-messages {
|
32 |
+
flex: 1;
|
33 |
+
overflow-y: auto;
|
34 |
+
padding: 1rem;
|
35 |
+
display: flex;
|
36 |
+
flex-direction: column;
|
37 |
+
}
|
38 |
+
|
39 |
+
.message {
|
40 |
+
display: flex;
|
41 |
+
align-items: flex-start;
|
42 |
+
margin-bottom: 1rem;
|
43 |
+
width: 100%;
|
44 |
+
}
|
45 |
+
|
46 |
+
.message.user {
|
47 |
+
justify-content: flex-end;
|
48 |
+
}
|
49 |
+
|
50 |
+
.message-content {
|
51 |
+
max-width: 70%;
|
52 |
+
padding: 0.8rem;
|
53 |
+
border-radius: 12px;
|
54 |
+
font-size: clamp(14px, 2vw, 20px);
|
55 |
+
word-wrap: break-word;
|
56 |
+
}
|
57 |
+
|
58 |
+
.user .message-content {
|
59 |
+
background-color: #006acc;
|
60 |
+
color: white;
|
61 |
+
border-radius: 18px 18px 4px 18px;
|
62 |
+
}
|
63 |
+
|
64 |
+
.bot .message-content {
|
65 |
+
background-color: #333;
|
66 |
+
color: #f0f2f5;
|
67 |
+
border-radius: 18px 18px 18px 4px;
|
68 |
+
}
|
69 |
+
|
70 |
+
/* Input section */
|
71 |
+
.chat-input-container {
|
72 |
+
padding: 1rem;
|
73 |
+
border-top: 1px solid #444;
|
74 |
+
position: relative;
|
75 |
+
}
|
76 |
+
|
77 |
+
.chat-input-container textarea {
|
78 |
+
width: 100%;
|
79 |
+
padding: 0.8rem 60px 0.8rem 1rem;
|
80 |
+
border: 1px solid #444;
|
81 |
+
border-radius: 20px;
|
82 |
+
resize: none;
|
83 |
+
height: 50px;
|
84 |
+
font-size: clamp(14px, 1.5vw, 16px);
|
85 |
+
background-color: #333;
|
86 |
+
color: #f0f2f5;
|
87 |
+
}
|
88 |
+
|
89 |
+
/* Header section */
|
90 |
+
.chat-header {
|
91 |
+
padding: 1rem;
|
92 |
+
border-bottom: 1px solid #444;
|
93 |
+
display: flex;
|
94 |
+
justify-content: space-between;
|
95 |
+
align-items: center;
|
96 |
+
}
|
97 |
+
|
98 |
+
.bot-profile {
|
99 |
+
display: flex;
|
100 |
+
align-items: center;
|
101 |
+
gap: 10px;
|
102 |
+
}
|
103 |
+
|
104 |
+
.bot-avatar {
|
105 |
+
width: clamp(30px, 4vw, 40px);
|
106 |
+
height: clamp(30px, 4vw, 40px);
|
107 |
+
border-radius: 50%;
|
108 |
+
}
|
109 |
+
|
110 |
+
.bot-name {
|
111 |
+
font-weight: bold;
|
112 |
+
font-size: clamp(16px, 2vw, 1.1rem);
|
113 |
+
color: #f0f2f5;
|
114 |
+
}
|
115 |
+
|
116 |
+
/* Responsive adjustments */
|
117 |
+
@media screen and (max-width: 768px) {
|
118 |
+
.chat-container {
|
119 |
+
margin: 10px;
|
120 |
+
width: calc(100% - 20px);
|
121 |
+
height: calc(100vh - 20px);
|
122 |
+
}
|
123 |
+
|
124 |
+
.message-content {
|
125 |
+
max-width: 85%;
|
126 |
+
}
|
127 |
+
|
128 |
+
.input-buttons {
|
129 |
+
right: 1rem;
|
130 |
+
bottom: 1.5rem;
|
131 |
+
}
|
132 |
+
}
|
133 |
+
|
134 |
+
@media screen and (max-width: 480px) {
|
135 |
+
.chat-container {
|
136 |
+
margin: 5px;
|
137 |
+
width: calc(100% - 10px);
|
138 |
+
border-radius: 8px;
|
139 |
+
}
|
140 |
+
|
141 |
+
.message-content {
|
142 |
+
max-width: 90%;
|
143 |
+
padding: 0.6rem;
|
144 |
+
}
|
145 |
+
|
146 |
+
.chat-header {
|
147 |
+
padding: 0.8rem;
|
148 |
+
}
|
149 |
+
|
150 |
+
.chat-input-container {
|
151 |
+
padding: 0.8rem;
|
152 |
+
}
|
153 |
+
|
154 |
+
.voice-controls {
|
155 |
+
gap: 5px;
|
156 |
+
}
|
157 |
+
|
158 |
+
.input-buttons {
|
159 |
+
gap: 5px;
|
160 |
+
}
|
161 |
+
}
|
162 |
+
|
163 |
+
/* Button styles */
|
164 |
+
.input-buttons {
|
165 |
+
position: absolute;
|
166 |
+
right: 1.5rem;
|
167 |
+
bottom: 1.7rem;
|
168 |
+
display: flex;
|
169 |
+
gap: 8px;
|
170 |
+
}
|
171 |
+
|
172 |
+
.voice-input-button,
|
173 |
+
.send-button {
|
174 |
+
background: none;
|
175 |
+
border: none;
|
176 |
+
cursor: pointer;
|
177 |
+
padding: 8px;
|
178 |
+
color: #006acc;
|
179 |
+
transition: color 0.3s;
|
180 |
+
}
|
181 |
+
|
182 |
+
.voice-input-button:hover,
|
183 |
+
.send-button:hover {
|
184 |
+
color: #004a77;
|
185 |
+
}
|
186 |
+
|
187 |
+
/* Animation styles */
|
188 |
+
.typing-indicator {
|
189 |
+
display: flex;
|
190 |
+
gap: 4px;
|
191 |
+
padding: 8px;
|
192 |
+
}
|
193 |
+
|
194 |
+
.typing-dot {
|
195 |
+
width: 8px;
|
196 |
+
height: 8px;
|
197 |
+
background-color: #90949c;
|
198 |
+
border-radius: 50%;
|
199 |
+
animation: typing 1.4s infinite ease-in-out;
|
200 |
+
}
|
201 |
+
|
202 |
+
@keyframes typing {
|
203 |
+
0%, 100% { transform: translateY(0); }
|
204 |
+
50% { transform: translateY(-10px); }
|
205 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|