-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (72 loc) · 1.26 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
*{
margin: 0;
padding: 0;
}
#game{
height: 500px;
width: 390px;
border: 1px solid black;
margin: 1rem auto;
background:url(bg.jpg) ;
background-size: contain;
overflow: hidden;
}
#bluecar{
height: 100px;
width: 130px;
background-color: black;
position: relative;
top: 0px;
left: 0px;
text-align: center;
animation: move 1s linear infinite ;
}
#bluecar img{
height: 100px;
}
@keyframes move {
0%{
top: 0px;
}
100%{
top: 501px;
}
}
#racecar{
height: 100px;
width: 130px;
background-color: red;
position: relative;
top: 250px;
left: 130px;
text-align: center;
}
#racecar img{
height: 100px;
}
#result{
height: 200px;
width: 400px;
background-color: cornflowerblue;
margin: 1rem auto;
border-radius: 20px;
font-size: 30px;
text-align: center;
color: white;
display:none ;
}
#score{
font-size: 2.2rem;
color: brown;
}
#btn{
padding: 0.5rem 1rem;
border-radius: 20px;
border: none;
background-color: black;
color: cyan;
font-size: 25px;
margin-top: 10px;
cursor: pointer;
text-transform: uppercase;
}