-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (93 loc) · 1.76 KB
/
style.css
File metadata and controls
101 lines (93 loc) · 1.76 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
101
* {
padding: 0;
margin: 0;
}
#game {
width: 600px;
height: 500px;
border: 1px solid black;
margin: auto;
/* margin-top: 50px; */
box-sizing: border-box;
background-image: url("img/startscreen.png");
position: relative;
background-size: contain;
}
#character {
width: 100px;
height: 100px;
position: relative;
background-image: url("img/pinguboard.png");
background-repeat: no-repeat;
background-position: center;
top: 200px;
left: 200px;
/* background-color: aqua; */
-webkit-background-size: contain;
-moz-background-size: contain;
-o-background-size: contain;
background-size: contain;
}
#painz {
width: 100px;
height: 100px;
top: 600px;
position: relative;
animation: none;
animation-timing-function: linear;
background-image: url("img/blocker-ice.png");
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: contain;
-moz-background-size: contain;
-o-background-size: contain;
background-size: contain;
}
#gainz {
width: 100px;
height: 100px;
left: 500;
top: 600px;
position: relative;
/* background-color: green; */
animation: none;
animation-timing-function: linear;
background-image: url("img/pick-gold.png");
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: contain;
-moz-background-size: contain;
-o-background-size: contain;
background-size: contain;
}
@keyframes slide {
0% {
top: -100px;
}
1000% {
top: 1000px;
}
}
@keyframes slide2 {
0% {
top: -100px;
}
1000% {
top: 1000px;
}
}
/* #white {
width: 600px;
height: 110px;
position: absolute;
top: 500px;
background-color: white;
z-index: 100;
} */
#frame {
margin-top: 100px;
}
#button1 {
width: 60px;
height: 60px;
}