prasanth345 commited on
Commit
2db2329
·
verified ·
1 Parent(s): 1e06ac1

Create styles.css

Browse files
Files changed (1) hide show
  1. styles.css +52 -0
styles.css ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #f0f0f0;
4
+ margin: 0;
5
+ padding: 0;
6
+ }
7
+
8
+ #chat-container {
9
+ width: 400px;
10
+ margin: 50px auto;
11
+ }
12
+
13
+ #chat-box {
14
+ border: 1px solid #ccc;
15
+ background-color: white;
16
+ padding: 20px;
17
+ border-radius: 10px;
18
+ display: flex;
19
+ flex-direction: column;
20
+ height: 500px;
21
+ }
22
+
23
+ #messages {
24
+ flex-grow: 1;
25
+ overflow-y: auto;
26
+ margin-bottom: 10px;
27
+ padding-right: 10px;
28
+ }
29
+
30
+ #input-container {
31
+ display: flex;
32
+ }
33
+
34
+ #chat-input {
35
+ flex-grow: 1;
36
+ padding: 10px;
37
+ border: 1px solid #ccc;
38
+ border-radius: 5px;
39
+ }
40
+
41
+ #send-button {
42
+ background-color: #007bff;
43
+ color: white;
44
+ padding: 10px 15px;
45
+ border: none;
46
+ border-radius: 5px;
47
+ cursor: pointer;
48
+ }
49
+
50
+ #send-button:hover {
51
+ background-color: #0056b3;
52
+ }