jithenderchoudary commited on
Commit
4643ca3
·
verified ·
1 Parent(s): b5c8eb6

Create static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +33 -0
static/style.css ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #f5f5f5;
4
+ margin: 0;
5
+ padding: 0;
6
+ }
7
+
8
+ .chat-container {
9
+ width: 60%;
10
+ margin: 0 auto;
11
+ padding: 20px;
12
+ background-color: white;
13
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
14
+ }
15
+
16
+ .chat-box {
17
+ max-height: 400px;
18
+ overflow-y: scroll;
19
+ margin-bottom: 10px;
20
+ border: 1px solid #ddd;
21
+ padding: 10px;
22
+ background-color: #fafafa;
23
+ }
24
+
25
+ #user-input {
26
+ width: 70%;
27
+ padding: 10px;
28
+ }
29
+
30
+ #send-btn {
31
+ padding: 10px;
32
+ cursor: pointer;
33
+ }