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
|
body {
font-family: "Ace Attorney", "ace_attorneyregular", "MS PGothic", "MS UI Gothic", "MS Sans Serif", "Hiragino Maru Gothic Pro", "Mitra Mono", "Mukti Narrow", "Meera", "Khmer OS", "FreeSans", "Gargi" , sans-serif;
}
@font-face {
font-family: 'ace_attorneyregular';
src: url('ace-attorney.woff2') format('woff2'),
url('ace-attorney.woff') format('woff');
font-weight: normal;
font-style: normal;
}
img {
image-rendering: crisp-edges;
image-rendering: pixelated;
}
hr {
height: 6px;
width: 100%;
background-color: #c6c6c6;
background: repeating-linear-gradient(to right,#f7f7f7, #f7f7f7 1px, #8c8c8c 1px, #8c8c8c 2px, #c6c6c6 2px, #c6c6c6 16px);
margin: 0;
}
#evi_name {
background-color: #393939;
color: #ffad18;
border: none;
}
#evi_desc {
flex: 1 auto;
border-top: 1px solid #6b946b;
border-left: 1px solid #6b946b;
border-right: none;
border-bottom: none;
background-color: #9cc694;
}
#client_menu {
background-color: #5a5a5a;
overflow-y: auto;
height: 100%;
}
@keyframes shutter-effect {
0% { background-position: 0 0; }
100% { background-position: 0 4px; }
}
#client_menu:after {
position: absolute;
content: "";
pointer-events: none;
background: repeating-linear-gradient(transparent, transparent 3px, rgba(255, 255, 255, 0.2) 3px, rgba(255, 255, 255, 0.2) 4px);
animation: shutter-effect 0.15s linear infinite;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.5;
}
#client_iccontrols {
width: 100%;
background: repeating-linear-gradient(transparent, transparent 3px, rgba(255, 255, 255, 0.2) 3px, rgba(255, 255, 255, 0.2) 4px);
animation: shutter-effect 0.15s linear infinite;
}
.menu_content {
background-color: #847342;
border: #735a42 solid 1px;
}
.menu_text {
color: #7b2900;
background-color: #f7f7f7;
border: 1px solid #bd9484;
border-radius: 3px;
padding: 0 4px;
}
.menu_icon {
display: inline-block;
width: 1.5em;
height: 1.5em;
background-color: #631818;
border: 2px ridge #dec6bd;
border-radius: 2px;
margin-bottom: 2px;
}
.client_button {
min-width: 6em;
margin: 1px;
padding: 6px 2px;
clip-path: polygon(75% 0, 100% 50%, 100% 100%, 0 100%, 0 50%, 25% 0);
cursor: pointer;
text-align: center;
color: white;
background-color: #7b2900;
text-shadow: 0 0 4px #000;
border: #000 solid 1px;
}
#client_log {
color: white;
background: repeating-linear-gradient(black, black 3px, #181818 3px, #181818 4px);
animation: shutter-effect 0.15s linear infinite;
}
.lm_tab {
color: white;
background-color: #7b3100;
text-shadow: 0 0 1px #632100;
border-color: #424242;
}
.lm_tab.lm_active {
color: white;
background-color: #efa521;
text-shadow: 0 0 1px #ce8421;
border-color: #b5b5b5;
}
#client_defense_hp {
text-align: left;
}
#client_defense_hp>.health-bar {
background-color: #0000bd;
border-color: #8484ff transparent #00009c transparent;
}
#client_prosecutor_hp {
text-align: right;
}
#client_prosecutor_hp>.health-bar {
background-color: #bd0000;
border-color: #ff8484 transparent #9c0000 transparent;
}
.health-box {
background-color: #292929;
height: 18px;
width: 50%;
margin: 0 auto;
border: ridge 2px #dedede;
border-radius: 2px;
box-sizing: border-box;
display: block;
}
.health-bar {
width: 100%;
height: 60%;
height: calc(100% - 4px);
bottom: 0;
border-width: 2px;
border-style: groove none ridge none;
position: relative;
display: inline-block;
transition: 1s linear;
transition-property: width;
}
|