DoNotChoke commited on
Commit
73bdb54
·
verified ·
1 Parent(s): 2844849

Create styles.css

Browse files
Files changed (1) hide show
  1. styles.css +38 -0
styles.css ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* styles.css */
2
+ .chat-container {
3
+ max-width: 1200px !important;
4
+ margin: 0 auto !important;
5
+ height: 80vh !important;
6
+ }
7
+
8
+ .chatbot {
9
+ border: 2px solid #e0e0e0 !important;
10
+ border-radius: 15px !important;
11
+ padding: 20px !important;
12
+ background-color: #f8f9fa !important;
13
+ min-height: 600px !important;
14
+ }
15
+
16
+ .user-message {
17
+ background-color: #e3f2fd !important;
18
+ border-radius: 15px 15px 0 15px !important;
19
+ padding: 12px 20px !important;
20
+ margin: 8px 0 !important;
21
+ max-width: 80%;
22
+ }
23
+
24
+ .bot-message {
25
+ background-color: #fff !important;
26
+ border: 1px solid #eee !important;
27
+ border-radius: 15px 15px 15px 0 !important;
28
+ padding: 12px 20px !important;
29
+ margin: 8px 0 !important;
30
+ max-width: 80%;
31
+ }
32
+
33
+ .avatar {
34
+ width: 40px !important;
35
+ height: 40px !important;
36
+ border-radius: 50% !important;
37
+ margin: 0 10px !important;
38
+ }