blob: 9a046e97c7b9773a88ccadd7988c5ad37faf7a45 (
plain)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
.text_white {
color: #000;
}
.text_green {
color: #0f0;
}
.text_red {
color: #f00;
}
.text_orange {
color: #ffa500;
}
.text_blue {
color: #b3b2fa;
}
.text_yellow {
color: #ff0;
}
.text_pink {
color: #ffc0cb;
}
.text_cyan {
color: #0ff;
}
.text_grey {
color: #bbb;
}
#client_chatcontainer {
display: block;
position: absolute;
bottom: 0;
left: 0;
height: 42%;
width: 100%;
filter: none;
}
#client_name {
display: block;
position: absolute;
left: 11%;
top: 0;
height: 12%;
min-width: 11%;
font-size: 0.8em;
background: #d8f8a0;
color: #004000;
margin: 0;
padding-top: 0.4%;
padding-left: 1.955%;
padding-right: 1.955%;
border-color: #b0f818;
border-style: solid;
border-width: 0.3em 0.6em;
border-radius: 10%/50%;
box-shadow: 0 0.3em #70c020;
line-height: 100%;
z-index: 1;
font-family: sans-serif;
}
#client_inner_name {
text-justify: distribute;
line-height: 100%;
margin: 0;
margin-top: 2.75%;
}
#client_chat {
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 87%;
margin: auto;
/*border-color: darkgray;
border-style: solid;
border-width: 0.15em;
border-radius: 0.15em;
background-color: white;*/
background-image: url("acww.svg");
background-size: cover;
background-repeat: no-repeat;
word-break: keep-all;
overflow-wrap: break-word;
text-align: left;
overflow: hidden;
scroll-behavior: smooth;
font-family: sans-serif;
}
#client_inner_chat {
padding: 5% 12%;
margin: 0;
line-height: 100%;
}
#client_chatwaiting {
display: block;
position: absolute;
color: transparent;
text-shadow: none;
right: 12%;
bottom: 15%;
width: 1.4em;
height: 1.5em;
background-image: url("chatwaiting_acww.svg");
background-size: contain;
animation: idling 0.4s linear infinite;
}
@keyframes idling {
0% {
bottom: 12%;
}
50% {
bottom: 15%;
}
100% {
bottom: 12%;
}
}
|