-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (82 loc) · 1.5 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (82 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* General Styles */
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f9;
}
/* Chat Button */
.chat-button {
padding: 15px 30px;
font-size: 16px;
cursor: pointer;
border: none;
background-color: #007bff;
color: white;
border-radius: 5px;
}
/* Chat Popup */
.chat-popup {
display: none;
position: fixed;
bottom: 20px;
right: 20px;
width: 300px;
height: 400px;
background: white;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
border-radius: 10px;
overflow: hidden;
}
.chat-header {
background: #007bff;
color: white;
padding: 10px;
text-align: center;
font-size: 18px;
}
.close-button {
float: right;
background: none;
border: none;
color: white;
font-size: 16px;
cursor: pointer;
}
.chat-body {
padding: 10px;
height: 300px;
overflow-y: auto;
}
.chat-footer {
padding: 10px;
display: flex;
align-items: center;
justify-content: space-between;
}
.chat-footer button {
padding: 10px;
border: none;
background-color: #007bff;
color: white;
border-radius: 50%;
font-size: 18px;
cursor: pointer;
}
/* Chat Messages */
.chat-message {
margin: 5px 0;
padding: 10px;
border-radius: 5px;
}
.user-message {
background-color: #e0f7fa;
text-align: right;
}
.bot-message {
background-color: #f1f1f1;
text-align: left;
}