-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathasteroids.css
95 lines (84 loc) · 1.12 KB
/
asteroids.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
#canvases{
height: 670px;
width: 1080px;
}
#space{
background-color: black;
}
#touch-left{
z-index: 1;
position: absolute;
left: 0px;
top: 0px;
height: 100%;
width: 1080px;
}
body{
font-family: monospace;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: url(images/dot.gif), default;
}
#container{
position: relative;
}
#info{
position: absolute;
top: 10px;
left: 10px;
color: white;
}
.label{
margin-right: 5px;
}
#info span{
margin-right: 15px;
}
#instruction{
position:absolute;
bottom: 5px;
color: yellow;
}
#details{
position:absolute;
left: 10px;
bottom: 5px;
color: white;
}
#details span{
margin-right: 15px;
}
span.warning{
color: red;
}
#message{
text-align: center;
display:none;
font-size: 28px;
color: white;
position: absolute;
z-index: 10;
}
#highscoresTable{
font-size: 14px;
color: white;
width: 100%;
margin: auto 0px;
}
div.newHighScore{
color: red;
font-size: 1.2em;
}
tr.playerScore{
color: green;
}
td.score{
text-align: right;
}
td.date{
text-align: right;
}