forked from PamudaUposath/Creators-Space-GroupProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (39 loc) · 708 Bytes
/
style.css
File metadata and controls
43 lines (39 loc) · 708 Bytes
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
.chatbot-container {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
}
.chatbot-toggle {
background-color: #007bff;
color: white;
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
font-size: 24px;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.chatbot-window {
display: none;
flex-direction: column;
width: 300px;
height: 400px;
background-color: #f9f9f9;
border: 1px solid #ccc;
border-radius: 10px;
padding: 10px;
position: absolute;
bottom: 60px;
right: 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.chat-body {
flex: 1;
overflow-y: auto;
margin-bottom: 10px;
}
.bot-message, .user-message {
margin: 5px 0;
}