-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.css
111 lines (111 loc) · 2.24 KB
/
game.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
*{
margin :0;
padding :0;
}
.hide{ display : none;}
.carGame{
width: 100%;
height: 100%;
background-image:url("cargame.png") ;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.car{
width : 50px;
height: 100px;
background-color: rgb(250, 10, 10);
position: absolute;
bottom: 300px;
background-image: url("car.png");
background-repeat: no-repeat;
background-size: 100% 100%;
}
.enemy{
width : 50px;
height: 100px;
background-color: rgb(250, 10, 10);
position: absolute;
bottom: 120px;
background-image: url("car.png");
background-repeat: no-repeat;
background-size: 100% 100%;
}
.lines{
width: 10px;
height: 100px;
background: white;
position: absolute;
margin-left: 200px;
}
.gameArea{
width: 450px;
height: 101vh;
background-color: #2c3e50;
margin : auto;
position: relative;
border-right: 7px dashed #c8d6e5;
border-left: 7px dashed #c8d6e5;
}
.score{
position : absolute;
top: 15px;
left : 30px;
background : #1504fd;
width : 300px;
height: 70px;
line-height: 70px;
text-align: center;
color: white;
font-size: 1.5em;
font-family: fantasy;
box-shadow: 0 5px 5px #777;
}
.startScreen{
position : absolute;
background-color: #ee5253;
left : 50%;
top : 50%;
transform : translate(-50%, -50%);
color : white;
z-index: 1;
text-align: center;
border: 1px solid #ff6b6b;
padding : 15px;
margin : auto;
width: 50%;
cursor: pointer;
font-family: fantasy;
letter-spacing: 5;
font-size: 20px;
word-spacing: 3;
line-height: 30px;
text-transform: uppercase;
box-shadow: 0 5px 5px #777;
}
.arrowleft{
width: 150px;
height: 150px;
border: 5px solid red;
border-radius: 15px;
background-color: black;
bottom: 400px;
position: relative;
padding: 50px;
color: red;
font-size: 2em;
font-family: fantasy;
margin-left: 0px;
}
.arrowright{
width: 150px;
height: 150px;
border: 5px solid red;
border-radius: 15px;
background-color: black;
bottom: 400px;
position: relative;
color: red;
font-size: 2em;
font-family: fantasy;
left: 500px;
}