File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ let game;
3
3
4
4
document . addEventListener ( 'DOMContentLoaded' , ( event ) => {
5
5
let canvas = document . getElementById ( 'coordinator' ) ;
6
- let leftCanvas = document . getElementById ( 'coordinator-left' ) ;
7
6
let playBtn = document . getElementById ( 'play' ) ;
8
7
let startScreen = document . getElementById ( 'startscreen' ) ;
9
8
let startBtn = document . getElementById ( 'start' ) ;
@@ -19,12 +18,10 @@ document.addEventListener('DOMContentLoaded', (event) => {
19
18
20
19
function alertWhite ( ) {
21
20
canvas . style = "border: 10px solid white" ;
22
- leftCanvas . style = "border: 10px solid white" ;
23
21
}
24
22
25
23
function alertRed ( ) {
26
24
canvas . style = "border: 10px solid #fc5c65" ;
27
- leftCanvas . style = "border: 10px solid #fc5c65" ;
28
25
}
29
26
30
27
function destroyStartScreen ( ) {
@@ -58,8 +55,6 @@ document.addEventListener('DOMContentLoaded', (event) => {
58
55
game . start ( ) ;
59
56
} ) ;
60
57
61
- // createPauseScreen();
62
-
63
58
game = new Game ( {
64
59
ctx,
65
60
canvasHeight : canvas . height ,
Original file line number Diff line number Diff line change 111
111
}
112
112
113
113
114
- /* Play when Ready Button*/
114
+ /* Play when Ready Button */
115
115
116
116
# play {
117
117
font-family : 'Courier New' , Courier, monospace;
142
142
143
143
/* Instructions */
144
144
145
+ # instructions-together {
146
+ background-color : gray;
147
+ }
148
+
145
149
.title-instructions {
146
150
font-size : 1.3rem ;
147
151
}
215
219
transform : skew (-15deg , 0deg );
216
220
}
217
221
218
- /* Try Again Button*/
222
+ /* Try Again Button */
219
223
220
224
# tryagain {
221
225
color : white;
You can’t perform that action at this time.
0 commit comments