-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmain.css
More file actions
100 lines (84 loc) · 1.7 KB
/
main.css
File metadata and controls
100 lines (84 loc) · 1.7 KB
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
body{margin:0;padding:0;font-size:12px;background-color:#000;}
body, div {
-webkit-user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
-webkit-text-size-adjust: none;
}
body, div ,canvas {
image-rendering: optimizeSpeed;
-webkit-image-rendering: optimizeSpeed;
-webkit-interpolation-mode: nearest-neighbor;
}
body, html{height: 100%; width:100%;}
#Stage {
position: relative;
width: 800px;
height: 600px;
padding: 0px;
margin:0 auto;
color: #000000;
font-family: Monospace;
font-size: 13px;
text-align: left;
/*position: fixed;*/
background: #333;
}
#Stage .time, #Stage .cur-score,#Stage .hi-score {
font-size: 20px;
font-weight: bold;
text-shadow: 0px 0px 25px rgba(255,255,255,0.7);
position: absolute;
color: rgba(255,255,255,0.7);
background-color : rgba(0,0,0,0.3);
padding : 4px;
border-radius : 8px;
z-index : 999999 ;
}
#Stage .time {
display : none;
min-width : 100px;
left: 10px;
top: 10px;
}
#Stage .cur-score,#Stage .hi-score {
display : none;
min-width : 100px;
right: 10px;
top: 10px;
}
#Stage .hi-score {
display : none;
top: 50px;
}
#info {
position: absolute ;
background-color : rgba(220,220,220,0.6);
padding : 2px;
color : while;
border : 1px solid while;
top :2px;
left : 2px;
z-index : 99;
}
.joystick {
position: absolute;
top : 80px;
left : 120px;
}
.slot {
position: absolute;
background-color : #ffffff;
border : 1px solid #333333;
opacity: 0.3;
}
.stick {
position: absolute;
background-color : #ccccff;
}
#stick2 {
background-color : #ffffff;
border : 1px solid #333333;
opacity: 0.3;
}