-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (114 loc) · 1.75 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
#window {
background: black;
height: 400px;
width: 400px;
border-radius:20px;
}
#ingameText {
position:absolute;
font-family:tahoma;
color:white;
top:45%;
left:50%;
transform:translate(-50%,-50%);
-ms-transform:translate(-50%,-50%);
text-align:center;
font-size:25px;
font-weight:bold;
}
#messageText {
position:absolute;
font-family:tahoma;
font-weight:bold;
font-size:15px;
left:1%;
bottom:1%;
}
#restartButton {
color:black;
background:orange;
font-family:monospace;
font-size:25px;
position:absolute;
top:2.5%;
right:2.5%;
cursor:pointer;
padding-left:10px;
padding-right:10px;
border-radius:25px;
font-weight:bold;
box-shadow:0 0 4px orange;
}
#scoreDisplayer{
font-family:monospace;
font-weight:bold;
font-size:25px;
background:none;
border:0;
color:white;
position:absolute;
top:1%;
left:1%;
width:50%;
}
#scoreDisplayer:focus{
outline:none;
}
.center {
position: absolute;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
top: 50%;
left: 50%;
margin: 0;
}
.square {
position: absolute;
width: 50px;
height: 50px;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
margin: 0;
}
#player {
background: white;
top: 90%;
left: 50%;
}
.playerJumping {
animation-name: jumpAni;
animation-duration: 0.75s;
}
@keyframes jumpAni {
0% {
top:90%;
}
50% {
top: 50%;
}
100% {
top:90%;
}
}
#block {
background: red;
top: 90%;
left: 10%;
}
@keyframes blockAni {
0% {
left: 10%;
}
50% {
left: 90%;
}
100% {
left: 10%;
}
}
.blockStartMoving {
animation-name: blockAni;
animation-duration:2s;
animation-iteration-count: infinite;
animation-timing-function:ease-in;
}