blob: 14a9d81fab2154f596c359bc951768c8e583bfbc (
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
|
.text_white {
color: #fff;
}
.text_green {
color: #00c900;
}
.text_red {
color: #ff1700;
}
.text_orange {
color: #ffa500;
}
.text_blue {
color: #67b7ed;
}
.text_yellow {
color: #ff0;
}
.text_pink {
color: #ffc0cb;
}
.text_cyan {
color: #0ff;
}
#client_chatcontainer {
position: absolute;
bottom: 0;
height: 30%;
width: 100%;
font-family: "FOTK-Yoon Mincho 740", serif;
}
#client_name {
display: block;
background-color: #2989bd;
top: 0;
left: 10%;
padding: 0 10px;
height: 20%;
min-width: 15%;
border: 1px white;
border-style: solid none solid none;
position: absolute;
z-index: 1;
}
#client_inner_name {
margin: 0;
}
#client_chat {
font-size: 1em;
display: block;
width: 100%;
margin: auto;
height: 90%;
top: 10%;
position: absolute;
word-break: keep-all;
word-wrap: break-word;
overflow-wrap: break-word;
text-align: left;
overflow: hidden;
scroll-behavior: smooth;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAL0lEQVQImWOQ98nYzGsVupnXKnSzvE8GCmaASWBTgF8S3VhkNgOySnRTiJdENxYAYC1Ff2vnYrkAAAAASUVORK5CYII=) repeat;
border: 1px white;
border-style: solid none solid none;
}
#client_chat p {
margin: 4px;
padding: 2% 5%;
}
#client_chatwaiting {
display: block;
color: transparent;
right: 0.6em;
bottom: 0.6em;
width: 1em;
height: 1em;
background-image: url("chatwaiting_triology.svg");
background-size: contain;
position: absolute;
animation: idling 0.5s ease infinite;
}
@keyframes idling {
0% {
right: 0.6em;
}
25% {
right: 0.7em;
}
100% {
right: 0.6em;
}
}
|