chat.css
1.03 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
ul.no-bullets {
list-style-type: none; /* Remove bullets */
padding: 0; /* Remove padding */
margin: 0; /* Remove margins */
}
.chat-bubble {
position: relative;
padding: 0.5em;
margin-top: 0.25em;
margin-bottom: 0.25em;
border-radius: 0.4em;
color: white;
}
.mine {
background: #00aabb;
}
.bots {
background: #cc78c5;
}
.chat-bubble:after {
content: "";
position: absolute;
top: 50%;
width: 0;
height: 0;
border: 0.625em solid transparent;
border-top: 0;
margin-top: -0.312em;
}
.chat-bubble.mine:after {
right: 0;
border-left-color: #00aabb;
border-right: 0;
margin-right: -0.625em;
}
.chat-bubble.bots:after {
left: 0;
border-right-color: #cc78c5;
border-left: 0;
margin-left: -0.625em;
}
#chat_input {
width: 90%;
}
#send_button {
width: 5%;
border-radius: 0.4em;
color: white;
background-color: rgb(15, 145, 138);
}
.input-holder {
position: fixed;
left: 0;
right: 0;
bottom: 0;
padding: 0.25em;
background-color: lightseagreen;
}