-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
43 lines (42 loc) · 793 Bytes
/
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
* {
margin: 0;
padding: 0;
}
body {
width: 100%;
height: 100vh;
overflow: hidden;
position: relative;
}
#ground {
bottom: 0;
width: 100%;
height: 100px;
position: absolute;
background-color: green;
}
#character {
width: 50px;
height: 50px;
bottom: 100px;
position: absolute;
background-color: red;
right: calc(100% - 100px);
}
.obstacle {
right: 0;
width: 30px;
height: 100px;
bottom: 100px;
position: absolute;
background-color: black;
}
.score {
margin-top: 10px;
margin-left: 10px;
font-family: sans-serif;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}