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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
body {
font-family: "Ace Attorney", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Osaka", "MS Gothic", "MS Pゴシック", "Tahoma", Sans;
}
img {
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;
}
.text_white {
color: #fff;
}
.text_green {
color: #0f0;
}
.text_red {
color: #f00;
}
.text_orange {
color: #ffa500;
}
.text_blue {
color: #4596ff;
}
.text_yellow {
color: #ff0;
}
.text_pink {
color: #ffc0cb;
}
.text_cyan {
color: #0ff;
}
.text_rainbow {
background-color: #fff;
background-image: repeating-linear-gradient(to right,
red 0% 8%, orange 8% 16%, yellow 16% 24%, green 24% 32%, blue 32% 40%,
red 40% 48%, orange 48% 56%, yellow 56% 64%, green 64% 72%, blue 72% 80%,
red 80% 88%, orange 88% 96%, yellow 96% 100%);
background-size: 40% 40%;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: rainbow 4s linear infinite;
}
@keyframes rainbow_alt {
0%,
100% {
background-position: 0 0;
}
50% {
background-position: 400% 0;
}
}
@keyframes rainbow {
0% {
background-position: 0 0;
}
100% {
background-position: 400% 0;
}
}
#client_name {
display: none;
padding: 0px 6px;
height: 7%;
border: 1px solid rgba(255, 255, 255, 0.7);
background: rgba(73, 0, 254, 0.5);
top: 63%;
border-radius: 3px;
position: absolute;
}
#client_chat {
font-size: 1em;
display: none;
width: 98%;
width: calc(100% - 4px);
margin: auto;
height: 30%;
border: 2px solid rgba(255, 255, 255, 0.7);
background-color: rgba(0, 0, 0, 0.5);
top: 70%;
border-radius: 4px;
position: absolute;
word-break: keep-all;
word-wrap: break-word;
overflow-wrap: break-word;
text-align: left;
overflow: hidden;
scroll-behavior: smooth;
}
#client_chat p {
margin: 4px;
}
#client_chatwaiting {
display: none;
}
.client_button {
margin: 1px;
padding: 2px 15px;
cursor: pointer;
text-align: center;
font-weight: bold;
color: white;
background-color: #7b2900;
border-radius: 3px;
border-style: solid;
border-width: 1px;
border-color: #fff;
box-shadow: 1px 1px inset;
}
#client_defense_hp {
text-align: left;
}
#client_defense_hp>.health-bar {
background-color: #169de0;
}
#client_prosecutor_hp {
text-align: right;
}
#client_prosecutor_hp>.health-bar {
background-color: #e01f5f;
}
.health-box {
background-color: #555;
height: 20px;
width: 50%;
margin: 0 auto;
border: solid 2px #aaa;
border-radius: 5px;
box-sizing: border-box;
display: block;
}
.health-bar {
width: 100%;
height: 100%;
border-radius: 3px;
bottom: 0;
position: relative;
display: inline-block;
transition: 1s linear;
transition-property: width;
}
|