Spaces:
Build error
Build error
Update static/styles.css
Browse files- static/styles.css +29 -13
static/styles.css
CHANGED
@@ -1,29 +1,45 @@
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
}
|
4 |
|
5 |
-
|
6 |
-
width:
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
}
|
13 |
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
width: 100%;
|
16 |
padding: 10px;
|
17 |
-
margin-
|
18 |
border: 1px solid #ccc;
|
19 |
border-radius: 5px;
|
20 |
}
|
21 |
|
22 |
button {
|
23 |
-
|
24 |
-
color: white;
|
25 |
-
padding: 10px;
|
26 |
border: none;
|
|
|
|
|
27 |
border-radius: 5px;
|
28 |
-
|
|
|
|
|
|
|
|
|
29 |
}
|
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
+
background-color: #f0f0f0;
|
4 |
+
display: flex;
|
5 |
+
justify-content: center;
|
6 |
+
align-items: center;
|
7 |
+
height: 100vh;
|
8 |
+
margin: 0;
|
9 |
}
|
10 |
|
11 |
+
.chat-container {
|
12 |
+
width: 400px;
|
13 |
+
height: 500px;
|
14 |
+
background-color: white;
|
15 |
+
padding: 20px;
|
16 |
+
border-radius: 10px;
|
17 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
18 |
}
|
19 |
|
20 |
+
.chat-box {
|
21 |
+
height: 80%;
|
22 |
+
overflow-y: auto;
|
23 |
+
margin-bottom: 20px;
|
24 |
+
}
|
25 |
+
|
26 |
+
input[type="text"] {
|
27 |
width: 100%;
|
28 |
padding: 10px;
|
29 |
+
margin-right: 10px;
|
30 |
border: 1px solid #ccc;
|
31 |
border-radius: 5px;
|
32 |
}
|
33 |
|
34 |
button {
|
35 |
+
padding: 10px 20px;
|
|
|
|
|
36 |
border: none;
|
37 |
+
background-color: #007bff;
|
38 |
+
color: white;
|
39 |
border-radius: 5px;
|
40 |
+
cursor: pointer;
|
41 |
+
}
|
42 |
+
|
43 |
+
button:hover {
|
44 |
+
background-color: #0056b3;
|
45 |
}
|