-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbot.css
62 lines (53 loc) · 967 Bytes
/
bot.css
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
body {
background: #E3F2FD;
font-family: Arial, sans-serif;
}
.chatbot-toggler {
position: fixed;
bottom: 30px;
right: 35px;
height: 50px;
width: 50px;
display: flex;
cursor: pointer;
align-items: center;
justify-content: center;
border-radius: 50%;
background: #724ae8;
border: none;
}
.chatbot {
position: fixed;
right: 35px;
bottom: 90px;
width: 300px;
display: none; /* Hidden by default */
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.chatbot header {
background-color: #724ae8;
color: white;
padding: 10px;
}
.chatbox {
padding: 15px;
list-style: none;
max-height: 400px;
overflow-y: auto;
}
.chatbox .chat {
margin-bottom: 10px;
}
.chatbox .incoming p {
background-color: #eaeaea;
}
.chat-input {
padding: 10px;
}
.chat-input textarea {
width: calc(100% - 50px);
}
#send-btn {
cursor: pointer;
}