-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (50 loc) · 831 Bytes
/
style.css
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
HTML, BODY, DIV
{
margin: 0;
padding: 0;
font-family: Arial, Verdana, sans-serif;
font-size: 12px;
font-weight: normal;
color: #ccc;
background-color: #333;
}
.canvasHolder {
border: 1px solid #00ff00;
float: left;
padding: 1px;
}
#player_list {
border: 1px solid #ff0000;
}
.clear: {
font-size: 0;
line-height: 0;
clear: both;
overflow: hidden;
}
#players_on_stage .live {
background-color: green;
}
#players_on_stage .dead {
background-color: red;
}
#players_on_stage .none {
background-color: gray;
}
.player-color {
width: 20px;
height: 16px;
border: 1px solid white;
display: inline-block;
}
#log {
height: 350px;
overflow: auto;
}
ul {
list-style-type: none;
padding: 0px;
}
.musicOn {
border-style: inset;
}