ohlunlacassi commited on
Commit
191c577
·
verified ·
1 Parent(s): 73f8c5a

Add styles.css

Browse files
Files changed (1) hide show
  1. styles.css +47 -0
styles.css ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url("https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;400;500;600;700&display=swap");
2
+
3
+ #CHATBOT {
4
+ background: rgba(255, 255, 255, 0.7);
5
+ border-radius: 16px;
6
+ box-shadow: 0 4px 30px #d6dade;
7
+ backdrop-filter: blur(4.5px);
8
+ -webkit-backdrop-filter: blur(4.5px);
9
+ border: 1px solid rgba(255, 255, 255, 0.28);
10
+ }
11
+
12
+ .message.bot {
13
+ background: rgba(255, 255, 255, 0.6) !important;
14
+ font-family: "Hind Madurai", sans-serif;
15
+ }
16
+
17
+ .message.bot * {
18
+ color: #000000;
19
+ }
20
+
21
+ .message.user {
22
+ background: rgba(0, 0, 0, 0.35) !important;
23
+ font-family: "Hind Madurai", sans-serif;
24
+ }
25
+
26
+ .message.user * {
27
+ color: #ffffff !important;
28
+ }
29
+
30
+ .avatar-container img {
31
+ padding: 0 !important;
32
+ }
33
+
34
+ input,
35
+ textarea {
36
+ border: 2px solid #000000 !important; /* Change border color to black */
37
+ border-radius: 50px; /* Optional: Add rounded corners */
38
+ background-color: #e8e9ea !important; /* Optional: Match background color */
39
+ color: #000000 !important; /* Set text color for light mode */
40
+ }
41
+
42
+ body.dark-mode input,
43
+ body.dark-mode textarea {
44
+ background-color: #2c2c2c !important; /* Match dark mode input background */
45
+ color: #cccccc !important; /* Set text color for dark mode */
46
+ border: 2px solid #cccccc !important; /* Optional: Change border color for dark mode */
47
+ }