-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.css
119 lines (107 loc) · 1.91 KB
/
common.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
body {
font-style: italic;
font-family: verdana;
font-weight: bold;
background: none repeat scroll 0 0 #000000;
color: #FFFFFF;
}
.shadow{
text-shadow:
0 0 10px #FFFFFF,
0 0 20px #FFFFFF,
0 0 30px #FFFFFF,
0 0 40px #FF00DE,
0 0 70px #FF00DE,
0 0 80px #FF00DE,
0 0 100px #FF00DE,
0 0 150px #FF00DE;
}
h2 {
font-size: 20pt;
font-style: italic;
font-family: verdana;
font-weight: bold;
margin-bottom: 0;
text-shadow:
0 0 20px #FFFFFF,
0 0 30px #FFFFFF,
0 0 40px #FF00DE,
0 0 70px #FF00DE,
0 0 80px #FF00DE,
0 0 100px #FF00DE,
0 0 150px #FF00DE;
}
h2.intro {
font-size: 100pt;
font-style: italic;
font-family: verdana;
font-weight: bold;
margin-bottom: 0;
width: 100%;
text-align: center;
height: 35%;
vertical-align: middle;
text-shadow: 0 0 10px white, 0 0 30px white, 0 0 40px #FF00DE, 0 0 70px #FF00DE, 0 0 80px #FF00DE, 0 0 100px #FF00DE, 0 0 150px #FF00DE;
}
.lineup-marker {
position: absolute;
font-size: 18px;
}
body {
font-size: 10pt;
background-color: black;
color: #CCC;
}
#gamearea {
position: absolute;
width: 800px;
height:600px;
top: 90px;
left: 50px;
/*border: 2px solid #000;*/
}
#scoreCard {
position: absolute;
width: 300px;
height: 180px;
top: 90px;
left: 860px;
/*border: 1px solid gray;*/
}
#scoreCard td {
width: 20%;
padding: 2px;
text-align: center;
}
#messages {
position: absolute;
width: 300px;
height: 400px;
top: 290px;
left: 860px;
border: 1px solid gray;
overflow: scroll;
}
#messages p {
font-size: 12px;
margin: 2px;
font-family: monospace;
}
#fps {
position: absolute;
top: 700px;
left: 1060px;
color: #000;
font-weight: bold;
font-family: monospace;
text-shadow: 0;
}
#fps:before {
content: "fps: ";
}
canvas {
position: absolute;
top: 0;
left: 0;
/*border: 1px solid white;*/
}