-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (71 loc) · 1.37 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
76
77
78
79
80
body {
margin: 0;
}
.game-container {
display: flex;
background-color: #444;
width: 400px;
height: 600px;
align-items: center;
justify-content: space-around;
flex-direction: column;
position: relative;
overflow: hidden;
}
.line {
background-color: #999;
height: 100px;
width: 10px;
position: absolute;
left: calc(50% - 5px);
}
#score {
position: absolute;
left: 10px;
top: 5px;
color: white;
font-size: 3em;
}
.car {
width: 30px;
height: 65px;
background-image: url('img/car.png');
background-size: contain;
transition-duration: 100ms;
position: absolute;
}
.my-car {
width: 30px;
height: 65px;
background-image: url('img/my-car.png');
background-size: contain;
background-repeat: no-repeat;
transition-duration: 100ms;
position: absolute;
}
#menu {
position: absolute;
background-color: azure;
text-align: center;
/* padding: 10px 0px; */
width: 300px;
height: 100px;
left: 50px;
top: 190px;
font-family: 'Courier New', Courier, monospace;
font-weight: 800;
border-radius: 2px;
box-shadow: 0px 0px 10px #444;
}
#start-btn {
background-color: cadetblue;
padding: 28px;
cursor: pointer;
}
#start-btn:hover {
background-color: #3a7072;
color: white;
}
.header {
padding: 18px 0px 0px 0px;
}