-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (49 loc) · 1019 Bytes
/
style.css
File metadata and controls
51 lines (49 loc) · 1019 Bytes
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
*{
padding: 0;
margin: 0;
}
#game{
width: 400px;
height: 500px;
border-radius: 10px;
border: 5px solid black;
margin: auto;
overflow: hidden;
margin-top: 10px;
margin-bottom: 10px;
background-color: chocolate;
}
#character{
width: 20px;
height: 20px;
background-color: rgb(0, 140, 255);
border-radius: 50%;
position: relative;
top: 400px;
left: 190px;
z-index: 1000000;
}
.block{
width: 400px;
height: 20px;
border-radius: 4px;
background-color: rgb(54, 20, 4);
position: relative;
top: 100px;
margin-top: -20px;
}
.hole{
width: 40px;
height: 20px;
background-color:chocolate;
position: relative;
top: 100px;
margin-top: -20px;
}
h4{
text-align: center;
font-size: 30px;
font-weight:bold;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color:rgb(54, 20, 4);
}