-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
192 lines (178 loc) · 4.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
body{
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
.game-area {
position: relative;
width: 400px;
height: 600px;
border: 10px solid #333;
overflow: hidden;
background-color: red;
}
.paddle {
position: absolute;
bottom: 10px;
left: 50%;
width: 100px;
height: 20px;
background-color: #333;
transform: translateX(-50%);
margin-left: 50px;
}
.ball {
position: absolute;
width: 15px;
height: 15px;
background-color: whitesmoke;
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#score {
position: absolute;
top: 30px;
left: 40px;
font-size: 20px;
font-family: Arial, sans-serif;
color:yellow;
}
#gameOver {
text-align: center;
margin-top: -40px;
}
button {
margin: 10px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
background-color: yellow;
margin-top: 20px;
}
#dronoidTitle {
font-family: 'Press Start 2P', cursive;
font-size: 48px;
color: #007bff;
text-align: center;
animation: fadeIn 2s ease-in-out forwards;
margin-bottom: 20px;
margin-top: 100px;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: scale(0.5);
}
100% {
opacity: 1;
transform: scale(1);
}
}
#gameOver h2 {
font-family: 'Bungee', cursive;
color: red;
font-size: 48px;
animation: pulse 1s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
body, button, #score, #startButton, #restartButton {
font-family: 'Press Start 2P', cursive;
}
body {
background-image: url('dronoid.webp');
background-size: cover; /* Dopasowuje obraz do rozmiaru ekranu */
background-position: center; /* Ustawia obraz na środku */
background-repeat: no-repeat; /* Zapobiega powtarzaniu obrazu */
z-index: -5; /* Ustawia element za innymi, ale nie działa na body */
}
/*wybuch*/
.explosion {
position: fixed;
width: 1px;
height: 1px;
background-color: white;
border-radius: 50%;
opacity: 0;
pointer-events: none;
transform: scale(0);
transition: transform 0.3s ease-out, opacity 0.3s ease-out;
margin-left: 20px;
}
.explosion.active {
opacity: 1;
transform: scale(1.5);
}
.explosion.fade-out {
opacity: 0;
transform: scale(0);
}
.final-score {
position: absolute;
top: 50%; /* Ustawienie na środku */
left: 50%;
transform: translate(-50%, -50%);
color: yellow;
font-size: 24px;
font-family: 'Press Start 2P', cursive;
opacity: 0;
transition: opacity 0.5s ease-out;
}
.points-message {
position: absolute;
top: 65px; /* Ustal miejsce, gdzie chcesz wyświetlić komunikat */
left: 50%;
transform: translateX(-50%);
background-color: rgba(0, 0, 0, 0.7); /* Przezroczyste tło */
color: yellow; /* Kolor tekstu */
padding: 10px 20px; /* Padding wewnętrzny */
border-radius: 5px; /* Zaokrąglone rogi */
font-size: 20px; /* Rozmiar czcionki */
text-align: center; /* Wyśrodkowanie tekstu */
z-index: 1000; /* Zwiększa z-index, aby komunikat był na wierzchu */
display: none; /* Początkowo ukryty */
}
/*Czym grasz info*/
.info-text {
position: fixed;
top: 60px;
right: 420px;
font-family: 'Press Start 2P', cursive;
font-size: 16px;
color: rgba(255, 255, 255, 0.8);
background-color: rgba(0, 0, 0, 0.5);
padding: 10px;
border-radius: 5px;
z-index: 9999;
pointer-events: none;
}
/* Komunikat o powiększeniu */
.power-up-message {
position: absolute;
top: 65px; /* Ustal miejsce, gdzie chcesz wyświetlić komunikat */
left: 50%;
transform: translateX(-50%);
background-color: rgba(0, 0, 0, 0.7); /* Przezroczyste tło */
color: yellow; /* Kolor tekstu */
padding: 10px 20px; /* Padding wewnętrzny */
border-radius: 5px; /* Zaokrąglone rogi */
font-size: 20px; /* Rozmiar czcionki */
text-align: center; /* Wyśrodkowanie tekstu */
z-index: 1000; /* Zwiększa z-index, aby komunikat był na wierzchu */
display: none; /* Początkowo ukryty */
}