Subbu1304 commited on
Commit
16d241f
·
verified ·
1 Parent(s): 6258360

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +29 -13
static/styles.css CHANGED
@@ -1,29 +1,45 @@
1
  body {
2
  font-family: Arial, sans-serif;
 
 
 
 
 
 
3
  }
4
 
5
- #chat-container {
6
- width: 80%;
7
- max-width: 600px;
8
- margin: 0 auto;
9
- background-color: #f9f9f9;
10
- padding: 10px;
11
- border-radius: 5px;
12
  }
13
 
14
- #user-input {
 
 
 
 
 
 
15
  width: 100%;
16
  padding: 10px;
17
- margin-top: 10px;
18
  border: 1px solid #ccc;
19
  border-radius: 5px;
20
  }
21
 
22
  button {
23
- background-color: #4F46E5;
24
- color: white;
25
- padding: 10px;
26
  border: none;
 
 
27
  border-radius: 5px;
28
- margin-top: 10px;
 
 
 
 
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
  }