Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -2,36 +2,66 @@
|
|
2 |
padding: 1rem;
|
3 |
max-width: 800px;
|
4 |
margin: auto;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
}
|
6 |
|
7 |
.message {
|
8 |
margin: 0.5rem 0;
|
|
|
|
|
9 |
}
|
10 |
|
11 |
.user-message {
|
12 |
text-align: right;
|
13 |
-
color:
|
|
|
|
|
|
|
14 |
}
|
15 |
|
16 |
.bot-message {
|
17 |
text-align: left;
|
18 |
-
color:
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
border: 1px solid #ccc;
|
23 |
-
padding: 1rem;
|
24 |
-
margin-bottom: 1rem;
|
25 |
-
max-height: 400px;
|
26 |
-
overflow-y: auto;
|
27 |
}
|
28 |
|
29 |
input[type="text"] {
|
30 |
width: calc(100% - 100px);
|
31 |
padding: 0.5rem;
|
32 |
margin-right: 0.5rem;
|
|
|
|
|
33 |
}
|
34 |
|
35 |
button {
|
36 |
-
padding: 0.5rem;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
}
|
|
|
2 |
padding: 1rem;
|
3 |
max-width: 800px;
|
4 |
margin: auto;
|
5 |
+
font-family: Arial, sans-serif;
|
6 |
+
background-color: #f4f4f9;
|
7 |
+
border-radius: 8px;
|
8 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
9 |
+
}
|
10 |
+
|
11 |
+
h1 {
|
12 |
+
text-align: center;
|
13 |
+
color: #333;
|
14 |
+
}
|
15 |
+
|
16 |
+
#chatbox {
|
17 |
+
border: 1px solid #ccc;
|
18 |
+
padding: 1rem;
|
19 |
+
margin-bottom: 1rem;
|
20 |
+
max-height: 400px;
|
21 |
+
overflow-y: auto;
|
22 |
+
background-color: #fff;
|
23 |
+
border-radius: 8px;
|
24 |
}
|
25 |
|
26 |
.message {
|
27 |
margin: 0.5rem 0;
|
28 |
+
padding: 0.5rem;
|
29 |
+
border-radius: 5px;
|
30 |
}
|
31 |
|
32 |
.user-message {
|
33 |
text-align: right;
|
34 |
+
color: #fff;
|
35 |
+
background-color: #007bff;
|
36 |
+
margin-left: auto;
|
37 |
+
width: fit-content;
|
38 |
}
|
39 |
|
40 |
.bot-message {
|
41 |
text-align: left;
|
42 |
+
color: #333;
|
43 |
+
background-color: #e9ecef;
|
44 |
+
margin-right: auto;
|
45 |
+
width: fit-content;
|
|
|
|
|
|
|
|
|
|
|
46 |
}
|
47 |
|
48 |
input[type="text"] {
|
49 |
width: calc(100% - 100px);
|
50 |
padding: 0.5rem;
|
51 |
margin-right: 0.5rem;
|
52 |
+
border-radius: 5px;
|
53 |
+
border: 1px solid #ccc;
|
54 |
}
|
55 |
|
56 |
button {
|
57 |
+
padding: 0.5rem 1rem;
|
58 |
+
border: none;
|
59 |
+
border-radius: 5px;
|
60 |
+
background-color: #007bff;
|
61 |
+
color: #fff;
|
62 |
+
cursor: pointer;
|
63 |
+
}
|
64 |
+
|
65 |
+
button:hover {
|
66 |
+
background-color: #0056b3;
|
67 |
}
|