-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (58 loc) · 1.01 KB
/
style.css
File metadata and controls
64 lines (58 loc) · 1.01 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
*{
margin: 0;
padding: 0;
}
#grid{
width: 800px;
margin: auto;
background-color: greenyellow;
height: 576px;
}
#road{
width: 480px;
height: 576px;
margin: auto;
background-color: grey;
position: relative;
overflow: hidden;
text-align: center;
}
#lane1,#lane2,#lane3{
border-right: white 1px solid;
width: 156px;
height: 576px;
display: inline-block;
margin: 0px;
padding: 0px;
position: relative;
}
#car{
width: 70px;
height: 100px;
background-color: red;
position:absolute;
}
.obstacle{
width: 70px;
height: 100px;
background-color: green;
position:absolute;
}
#score{
font-size: 60px;
color: white;
width: 90px;
height: 90px;
position: absolute;
}
#gameOver{
font-size: 120px;
background-color: aqua;
text-align: center;
}
#reset{
margin-top: 15vh;
font-size: 30px;
padding: 2px;
width: 50%;
}