-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (53 loc) · 849 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
* {
padding: 0;
margin: 0;
left: 0;
right: 0;
}
#game {
width: 400px;
height: 500px;
border: 1px solid black;
margin: 50px auto;
border-top: 20px solid brown;
position: relative;
}
#character {
width: 20px;
height: 20px;
background-color: red;
border-radius: 50%;
position: relative;
top: 440px;
left: 190px;
z-index: 1000000;
}
.block-left {
width: 400px;
height: 20px;
background-color: black;
position: relative;
top: 100px;
/* float: left; */
margin-top: -20px;
}
.block-right {
width: 40px;
height: 20px;
background-color: rgb(0, 0, 0);
position: relative;
top: 100px;
float: right;
margin-top: -20px;
}
.background-image {
position: absolute;
width: 400px;
height: 500px;
}
.right-control {
background: cornflowerblue;
height: 20px;
width: 20px;
border-radius: 50%;
}