-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (45 loc) · 972 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (45 loc) · 972 Bytes
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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #0f172a;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.game-container {
text-align: center;
position: relative;
}
.score-board {
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 10px;
color: #38bdf8;
}
canvas {
background-color: #334155;
border: 4px solid #1e293b;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
display: block;
margin: 0 auto;
}
button {
margin-top: 15px;
background-color: #ef4444;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 1rem;
font-weight: bold;
border-radius: 8px;
cursor: pointer;
display: none; /* يظهر فقط عند الخسارة */
margin-left: auto;
margin-right: auto;
}
button:hover {
background-color: #dc2626;
}