Frajosgro commited on
Commit
da7cf62
·
verified ·
1 Parent(s): 78c3f6b

Create static/styles.css

Browse files
Files changed (1) hide show
  1. (static/static/styles.css +21 -0
(static/static/styles.css ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: 'Arial', sans-serif;
3
+ background: #f0f2f5;
4
+ margin: 0;
5
+ padding: 20px;
6
+ }
7
+
8
+ #chat {
9
+ height: 60vh;
10
+ overflow-y: auto;
11
+ background: white;
12
+ border-radius: 8px;
13
+ padding: 15px;
14
+ margin-bottom: 10px;
15
+ }
16
+
17
+ .disclaimer {
18
+ color: #ff6b6b;
19
+ font-size: 12px;
20
+ text-align: center;
21
+ }