-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
144 lines (124 loc) · 2.57 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
:root{
--gamewidth: 400px;
}
body{
padding: 0;
margin: 0;
background: black;
}
#holder{
width: var(--gamewidth);
height: 545px;
margin: auto;
margin-top: 0;
position: relative;
}
#title{
font-family: 'Black Ops One', cursive;
color: gold;
}
#instruction p, #usetouchpad{
font-family: 'Genos', sans-serif;
color: cornsilk;
}
#instruction img{
float: left;
-webkit-filter: grayscale(1) invert(1);
filter: grayscale(1) invert(1);
}
#bigScoreEl{
font-family: 'Bungee Inline', cursive;
color: khaki;
display: none;
}
#textScoreEl, #newHighScoreText{
font-family: 'Genos', sans-serif;
color: cornsilk;
display: none;
}
#scoreDisplay, #highscoreDisplay{
font-family: 'Holtwood One SC', serif;
color: ivory;
visibility: hidden;
}
#instBtn{
font-family: 'Aldrich', sans-serif;
background-color: gold;
color: brown;
display: none;
}
#gameovertxt{
font-family: 'Black Ops One', cursive;
color: gold;
display: none;
}
#gameBoard{
width: var(--gamewidth);
height: 535px;
z-index: 0;
border: 1px solid yellow;
}
#board{
background-image: url("./images/backgroundColorFall.png");
background-size: 400px 535px;
overflow: hidden;
}
#spikes{
width: var(--gamewidth);
height: 40px;
background-image: url("./images/long_metal_spike.png");
background-repeat: space repeat-x;
background-size: 25px 40px;
visibility: hidden;
}
#platform{
width: var(--gamewidth);
height: 20px;
background-image: url("./images/platform_single.png");
background-repeat: space;
background-size: 25px 25px;
visibility: hidden;
}
#game{
width: var(--gamewidth);
height: 450px;
}
#character{
width: 25px;
height: 25px;
background-color: black;
border-radius: 50%;
position: relative;
top: 370px;
left: 190px;
z-index: 1000000; /*to make sure it is always on top*/
visibility: hidden;
}
.block1{
height: 20px;
background-image: url("./images/platform_single.png");
background-repeat: space repeat-x;
background-size: 25px 25px;
position: relative;
top: 100px;
margin-top: -20px;
}
.block2{
height: 20px;
background-image: url("./images/platform_single.png");
background-repeat: space repeat-x;
background-size: 25px 25px;
position: relative;
top: 100px;
margin-top: -20px;
}
.hole{
height: 20px;
background-color: transparent;
position: relative;
top: 100px;
margin-top: -20px;
}
#left img, #right img{
pointer-events: none;
}