-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (112 loc) · 2.14 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
.background{
width: 100vw;
height: 100vh;
background-image: url("Background.jpg");
background-size: cover;
overflow-x: hidden;
position: absolute;
}
.body{
margin: 0px;
}
.player{
height: 200px;
position: absolute;
margin-top: 550px;
margin-left: 100px;
}
.score{
position: absolute;
font-size: 90px;
font-family: "Arial";
font-weight: bold;
margin-left: 30px;
}
.block{
position: absolute;
width: 60px;
height: 90px;
background-image: url("spikes.gif");
background-size: cover;
margin-top: 670px;
}
.ogameOverTXT{
width: 300px;
margin-top: 10px;
position: absolute;
margin-left: 200px;
}
.endST{
position: absolute;
color: black;
margin-top: 25px;
font-family: "Arial";
font-size: 30px;
font-weight: bold;
margin-left: 10px;
}
.gameTitle{
width:500px;
position: absolute;
margin-top: 100px;
margin-left: 400px;
}
.startSC{
width: 300px;
position: absolute;
margin-top: 330px;
margin-left: 520px;
}
.startST1{
position: absolute;
color: rgb(58, 13, 131);
margin-top: 670px;
font-family: "Arial";
font-size: 30px;
font-weight: bold;
margin-left: 420px;
}
.startST2{
position: absolute;
color: rgb(58, 13, 131);
margin-top: 700px;
font-family: "Arial";
font-size: 30px;
font-weight: bold;
margin-left: 360px;
}
.btn{
width: 300px;
height: 40px;
background-color: rgb(216, 50, 113);
border: none;
font-family: "Arial";
font-size: 15px;
font-weight: bold;
color: rgb(9, 17, 36);
cursor: pointer;
margin-top: 20px;
border-radius: 5px;
}
.startScreen{
width: 100vw;
height: 100vh;
background-image: url("Background.jpg");
background-size: cover;
overflow-x: hidden;
position: absolute;
visibility: visible;
}
.gameOver{
position: absolute;
width: 100vw;
height: 100vh;
margin: 0px;
background-image: url("Background.jpg");
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
visibility: hidden;
}