-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
84 lines (82 loc) · 1.44 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
81
82
83
84
*{
margin: 0;
padding: 0;
}
.hide{
display: none;
}
.CarGame{
width:100%;
height: 100vh;
background-image: url('bg.jpg');
background-repeat: no-repeat;
background-size: 100% 100% ;
/*background-color: yellow;*/
}
.car,.enemycar{
width: 50px;
height: 70px;
/* background:blue;*/
position: absolute;
bottom: 100px;
color: white;
background-image: url('image.png');
background-repeat: no-repeat;
background-size: 100% 100%;
}
.enemycar{
background-image: url('car.png');
}
.GameArea{
width: 400px;
height: 100vh;
background-color: black;
margin: 0 auto;
position: relative;
overflow: hidden;
border-right: 7px dashed #c8d6e5;
border-left: 7px dashed #c8d6e5;
}
.lines{
width: 10px;
height: 70px;
background: white;
position: absolute;
margin-left: 195px;
}
.Score{
position: absolute;
top:50px;
left: 40px;
background: #bbe1fa;
width:150px;
min-height: 50px;
line-height: 50px;
text-align: center;
color:#1b262c;
font-size: 1.5em;
font-family: fantasy;
box-shadow: 0 5px 5px #777;
font-family: 'Fredoka One', cursive;
}
.StartScreen{
position: absolute;
background-color:#ffd369;
left: 50%;
top:50%;
transform: translate(-50%,-50%);
color: #015668;
z-index: 1;
text-align: center;
padding: 15px;
width: 50%;
cursor: pointer;
font-size: 23px;
font-weight: 600;
letter-spacing: 2px;
word-spacing: 4px;
line-height: 30px;
text-transform: uppercase;
box-shadow: 0 5px 5px #777;
font-family: 'Russo One', sans-serif;
}