Spaces:
Runtime error
Runtime error
Update static/styles.css
Browse files- static/styles.css +19 -43
static/styles.css
CHANGED
@@ -1,59 +1,35 @@
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
-
background-color: #
|
4 |
-
|
|
|
5 |
}
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
padding: 1rem;
|
10 |
-
background-color: #4caf50;
|
11 |
-
color: white;
|
12 |
}
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
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:
|
|
|
|
|
|
|
44 |
cursor: pointer;
|
45 |
}
|
46 |
|
47 |
-
|
48 |
-
background-color: #
|
49 |
-
color: white;
|
50 |
-
border: none;
|
51 |
-
border-radius: 5px;
|
52 |
}
|
53 |
|
54 |
-
#
|
55 |
-
background-color:
|
56 |
-
|
57 |
-
border: none;
|
58 |
border-radius: 5px;
|
|
|
59 |
}
|
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
+
background-color: #f0f0f0;
|
4 |
+
padding: 20px;
|
5 |
+
margin: 0;
|
6 |
}
|
7 |
|
8 |
+
#chatbot-container, #voice-container {
|
9 |
+
margin-bottom: 20px;
|
|
|
|
|
|
|
10 |
}
|
11 |
|
12 |
+
input[type="text"], input[type="file"] {
|
13 |
+
padding: 10px;
|
14 |
+
width: 300px;
|
15 |
+
margin-right: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
}
|
17 |
|
18 |
button {
|
19 |
+
padding: 10px;
|
20 |
+
background-color: #007bff;
|
21 |
+
color: white;
|
22 |
+
border: none;
|
23 |
cursor: pointer;
|
24 |
}
|
25 |
|
26 |
+
button:hover {
|
27 |
+
background-color: #0056b3;
|
|
|
|
|
|
|
28 |
}
|
29 |
|
30 |
+
#chat-history, #voice-response {
|
31 |
+
background-color: white;
|
32 |
+
padding: 10px;
|
|
|
33 |
border-radius: 5px;
|
34 |
+
margin-bottom: 10px;
|
35 |
}
|