pa3lo commited on
Commit
93e121c
1 Parent(s): 6936f57

Create static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +52 -0
static/style.css ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body, html {
2
+ height: 100%;
3
+ margin: 0;
4
+ font-family: Arial, sans-serif;
5
+ }
6
+ .chat-container {
7
+ display: flex;
8
+ flex-direction: column;
9
+ height: 100%;
10
+ }
11
+ .header {
12
+ background-color: #007BFF; /* Changed to blue */
13
+ color: white;
14
+ padding: 10px;
15
+ text-align: center;
16
+ }
17
+ .messages {
18
+ flex: 1;
19
+ padding: 10px;
20
+ overflow-y: auto;
21
+ background-color: #f2f2f2;
22
+ }
23
+ .message {
24
+ margin-bottom: 15px;
25
+ padding: 5px;
26
+ border-radius: 10px;
27
+ background-color: #fff;
28
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
29
+ }
30
+ .input-form {
31
+ padding: 10px;
32
+ background-color: #ddd;
33
+ }
34
+ .input-field {
35
+ width: 100%;
36
+ padding: 10px;
37
+ margin-bottom: 10px;
38
+ border: 1px solid #ccc;
39
+ border-radius: 5px;
40
+ }
41
+ .send-button {
42
+ width: 100%;
43
+ padding: 10px;
44
+ background-color: #007BFF; /* Changed to blue */
45
+ color: white;
46
+ border: none;
47
+ border-radius: 5px;
48
+ cursor: pointer;
49
+ }
50
+ .send-button:hover {
51
+ background-color: #0069d9;
52
+ }