blob: 18c5ae649c75cc1ade80d3e04ca56c716d441259 (
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
|
body {
font-family: "Arial", sans-serif;
}
img {
image-rendering: crisp-edges;
image-rendering: pixelated;
}
input[type=text] {
background-color: #575757;
color: #fff;
}
::placeholder {
color: #ababab;
opacity: 1;
}
select {
background-color: #a9a9a9;
color: #000;
}
.client_button {
margin: 1px;
padding: 2px 15px;
cursor: default;
text-align: center;
font-weight: bold;
color: white;
background-color: #7c2900;
border-radius: 3px;
border-style: solid;
border-width: 1px;
border-color: #9a5a34 #4a3d36 #6e2200 #4a3d36;
box-shadow: 1px 1px inset;
}
.evi_icon {
width: 70px;
min-width: 70px;
height: 70px;
background-color: #7b7b7b;
outline: 2px ridge #fff;
outline-offset: -2px;
margin-right: 2px;
}
#client_inputbox {
background-color: #808080;
color: #fff;
}
#client_iccontrols {
background: #303030;
}
#client_log {
color: #fff;
background-color: #000;
}
#client_defense_hp {
text-align: left;
border-color: #486eca;
}
#client_defense_hp>.health-bar {
background-color: #333c8e;
}
#client_prosecutor_hp {
text-align: right;
border-color: #ca4848;
}
#client_prosecutor_hp>.health-bar {
background-color: #8e0000;
}
.health-box {
background-color: #000;
height: 20px;
width: 50%;
margin: 0 auto;
border-style: solid none;
border-width: 0.1em;
box-sizing: border-box;
display: block;
}
.health-bar {
width: 100%;
height: 100%;
bottom: 0;
position: relative;
display: inline-block;
transition: 1s linear;
transition-property: width;
}
#client_ooclog {
background-color: #8b8b8b;
color: #000;
}
|