-
Notifications
You must be signed in to change notification settings - Fork 36
/
style.css
123 lines (104 loc) · 1.84 KB
/
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
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
* {
font-family: DejaVu Sans Mono,Bitstream Vera Sans Mono,monospace !important;
background-color: black;
color: silver;
font-size: 11pt;
text-align:center;
line-height: 1.2em;
}
a {
color: orange;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/*body {
-ms-transform: scale(1.2,1); /* IE 9
-webkit-transform: scale(1.2,1); /* Safari
transform: scale(1.2,1); /* Standard syntax
}*/
input {
border: 1px solid;
padding: 0.5em;
border-color: silver;
background: black;
color: lime;
font-size: 1em;
text-align: left;
}
button {
border: 0;
text-align: center;
background: silver;
color: green;
font-size: 1em;
padding: 0.5em;
}
.color0 { color:white }
.color1 { color:red }
.color2 { color:yellow }
.color3 { color:lime }
.color4 { color:aqua }
.color5 { color:#4444FF }
.color6 { color:fuchsia }
#userButtons {
margin-top: 1em;
}
#btnJoin {
color: maroon;
}
#btnDisconnect {
color: black;
}
#playScreen {
display: none;
}
#connectForm{
margin-top: 2em;
margin-bottom: 5em;
}
#activePlayers, #topScores {
width: 13em;
color: white;
display: inline-block;
vertical-align: top;
}
#activePlayers .name, #topScores .name {
width: 10em;
text-align: left;
}
#activePlayers .score, #topScores .score {
width: 3em;
text-align: right;
}
#activePlayers div, #topScores div {
display: inline-block;
}
#topScores {
text-align: left;
}
#playField {
margin-top: 1em;
}
#worldHolder {
display: inline-block;
border: 1px solid;
border-color: silver;
padding: 0.3em;
line-height: 1em;
}
#world {
padding:0;
border:0;
margin:0;
line-height: 1em;
table-layout: fixed
}
#world .td {
width: 1em;
height: 1em;
padding:0;
margin:0;
line-height: 1em;
}