Spaces:
Runtime error
Runtime error
Update static/styles.css
Browse files- static/styles.css +37 -25
static/styles.css
CHANGED
@@ -1,47 +1,59 @@
|
|
1 |
-
/* Existing CSS styles from previous code */
|
2 |
body {
|
3 |
font-family: Arial, sans-serif;
|
4 |
-
background-color: #
|
5 |
color: #333;
|
6 |
}
|
7 |
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
max-width: 600px;
|
11 |
margin: 0 auto;
|
12 |
-
padding:
|
13 |
-
|
|
|
|
|
|
|
14 |
border-radius: 10px;
|
15 |
-
|
|
|
|
|
16 |
}
|
17 |
|
18 |
-
#chat-
|
19 |
-
|
20 |
-
|
|
|
|
|
21 |
overflow-y: auto;
|
22 |
-
margin-bottom: 20px;
|
23 |
-
border: 1px solid #ccc;
|
24 |
-
padding: 10px;
|
25 |
-
background-color: #f9f9f9;
|
26 |
}
|
27 |
|
28 |
-
|
29 |
width: calc(100% - 80px);
|
30 |
-
padding:
|
31 |
-
margin-right:
|
32 |
-
border: 1px solid #ccc;
|
33 |
-
border-radius: 5px;
|
34 |
}
|
35 |
|
36 |
button {
|
37 |
-
padding:
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
40 |
color: white;
|
|
|
41 |
border-radius: 5px;
|
42 |
-
cursor: pointer;
|
43 |
}
|
44 |
|
45 |
-
button
|
46 |
-
background-color: #
|
|
|
|
|
|
|
47 |
}
|
|
|
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
+
background-color: #f3f4f6;
|
4 |
color: #333;
|
5 |
}
|
6 |
|
7 |
+
header {
|
8 |
+
text-align: center;
|
9 |
+
padding: 1rem;
|
10 |
+
background-color: #4caf50;
|
11 |
+
color: white;
|
12 |
+
}
|
13 |
+
|
14 |
+
main {
|
15 |
max-width: 600px;
|
16 |
margin: 0 auto;
|
17 |
+
padding: 2rem;
|
18 |
+
}
|
19 |
+
|
20 |
+
#chat-container {
|
21 |
+
border: 1px solid #ccc;
|
22 |
border-radius: 10px;
|
23 |
+
padding: 1rem;
|
24 |
+
background-color: white;
|
25 |
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
26 |
}
|
27 |
|
28 |
+
#chat-history {
|
29 |
+
border-bottom: 1px solid #ccc;
|
30 |
+
padding-bottom: 1rem;
|
31 |
+
margin-bottom: 1rem;
|
32 |
+
height: 300px;
|
33 |
overflow-y: auto;
|
|
|
|
|
|
|
|
|
34 |
}
|
35 |
|
36 |
+
input[type="text"] {
|
37 |
width: calc(100% - 80px);
|
38 |
+
padding: 0.5rem;
|
39 |
+
margin-right: 1rem;
|
|
|
|
|
40 |
}
|
41 |
|
42 |
button {
|
43 |
+
padding: 0.5rem;
|
44 |
+
cursor: pointer;
|
45 |
+
}
|
46 |
+
|
47 |
+
#voice-chat {
|
48 |
+
background-color: #4caf50;
|
49 |
color: white;
|
50 |
+
border: none;
|
51 |
border-radius: 5px;
|
|
|
52 |
}
|
53 |
|
54 |
+
#send-button {
|
55 |
+
background-color: #007bff;
|
56 |
+
color: white;
|
57 |
+
border: none;
|
58 |
+
border-radius: 5px;
|
59 |
}
|