blob: c13c8eda6208a90d360fca3e30145bfc5f5f75e3 (
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
|
.text_white {
color: #000;
}
.text_blue {
color: #0000ee;
}
.text_green {
color: #38f43d;
}
.text_red {
color: #ff0101;
}
.text_orange {
color: #d6954b;
}
.text_yellow {
color: #feef25;
}
.text_pink {
color: #ff067c;
}
.text_cyan {
color: #0ff;
}
.text_grey {
color: #bbb;
}
#client_chatcontainer {
position: absolute;
bottom: 0;
left: 0;
height: 25%;
width: 100%;
color: #000000;
font-family: "courier-std", courier, monospace;
font-weight: bold;
overflow-wrap: break-word;
}
#client_name {
display: none;
}
#client_chat {
display: block;
position: absolute;
bottom: 0;
width: 100%;
margin: auto;
height: 100%;
background-color: #efefef;
}
#client_inner_chat {
line-height: 1.35;
padding-right: 2em;
padding-left: 2em;
padding-bottom: 2em;
}
#client_chatwaiting {
display: block;
position: absolute;
left: 2%;
bottom: 2%;
}
#client_trackstatus {
display: none;
}
#client_clock {
display: none;
}
|