blob: 17e87ecc355b08a774706db3a9a4a6d57d72b51f (
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
body {
font-family: monospace;
}
img {
image-rendering: crisp-edges;
image-rendering: pixelated;
}
@keyframes bg-scrolling {
0% { background-position: 0 0; }
100% { background-position: 5px 5px; }
}
@keyframes idling {
0% {
right: -4px;
}
50% {
right: -8px;
}
100% {
right: -4px;
}
}
#evi_name {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFElEQVQImWNgYGDYjAVTV/A/w2YAfxQSe53wkNkAAAAASUVORK5CYII=) repeat;
animation: bg-scrolling 0.2s infinite linear;
}
#evi_desc {
flex: 1 auto;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFElEQVQImWNgYGDYjAVTV/A/w2YAfxQSe53wkNkAAAAASUVORK5CYII=) repeat;
animation: bg-scrolling 0.2s infinite linear;
}
#client_menu {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFElEQVQImWNgYGDYjAVTV/A/w2YAfxQSe53wkNkAAAAASUVORK5CYII=) repeat;
animation: bg-scrolling 0.2s infinite linear;
overflow-y: auto;
height: 100%;
}
@keyframes shutter-effect {
0% { background-position: 0 0; }
100% { background-position: 0 4px; }
}
#client_iccontrols {
width: 100%;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFElEQVQImWNgYGDYjAVTV/A/w2YAfxQSe53wkNkAAAAASUVORK5CYII=) repeat;
animation: bg-scrolling 0.2s infinite linear;
}
.menu_text {
color: #7b2900;
background-color: #f7f7f7;
border-radius: 3px;
padding: 0 4px;
}
.menu_icon {
display: inline-block;
width: 1.5em;
height: 1.5em;
background-color: black;
border: 2px ridge green;
border-radius: 2px;
margin-bottom: 2px;
}
.client_button {
min-width: 6em;
margin: 1px;
padding: 6px 2px;
cursor: pointer;
text-align: center;
color: green;
background-color: #000;
border: green solid 1px;
}
#client_log {
color: white;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFElEQVQImWNgYGDYjAVTV/A/w2YAfxQSe53wkNkAAAAASUVORK5CYII=) repeat;
animation: bg-scrolling 0.2s infinite linear;
}
#client_defense_hp {
text-align: left;
}
#client_prosecutor_hp {
text-align: right;
}
.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;
background-color: #00b800;
border-color: #84ff84 transparent #009c00 transparent;
}
|