Spaces:
Runtime error
Runtime error
Srinivasulu kethanaboina
commited on
Create styles.css
Browse files- static/styles.css +25 -0
static/styles.css
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#chat-container {
|
| 2 |
+
max-width: 600px;
|
| 3 |
+
margin: auto;
|
| 4 |
+
padding: 20px;
|
| 5 |
+
border: 1px solid #ccc;
|
| 6 |
+
border-radius: 5px;
|
| 7 |
+
background-color: #f9f9f9;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
#chat-history {
|
| 11 |
+
height: 400px;
|
| 12 |
+
overflow-y: auto;
|
| 13 |
+
margin-bottom: 10px;
|
| 14 |
+
border: 1px solid #ddd;
|
| 15 |
+
padding: 10px;
|
| 16 |
+
background: white;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
#user-input {
|
| 20 |
+
width: calc(100% - 90px);
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
button {
|
| 24 |
+
padding: 10px;
|
| 25 |
+
}
|