This commit is contained in:
Evelyn Sucitro 2025-12-17 21:02:43 +07:00
parent a06013cd19
commit dcdc914e25
2 changed files with 1 additions and 11 deletions

View File

@ -82,10 +82,6 @@
font-weight: 700;
}
/* ==========================
GAME OVER MODAL - WITH ICON BUTTONS
========================== */
.game-over-overlay {
position: fixed;
inset: 0;
@ -131,7 +127,6 @@
}
}
/* Close Button (X) - Top Right */
.game-over-close {
position: absolute;
top: 18px;
@ -171,7 +166,6 @@
transform: rotate(90deg) scale(0.95);
}
/* Title - Gradient Pink/Red */
.game-over-title {
font-size: clamp(32px, 5vw, 42px);
font-weight: 900;
@ -186,7 +180,6 @@
line-height: 1.2;
}
/* Subtitle */
.game-over-subtitle {
font-size: 14px;
color: rgba(255, 255, 255, 0.5);
@ -196,7 +189,6 @@
text-transform: uppercase;
}
/* Score Section - PURPLE/VIOLET gradient */
.game-over-score {
margin: 0 0 38px;
}

View File

@ -17,9 +17,7 @@ $input = json_decode(file_get_contents('php://input'), true);
$username = $input['username'] ?? '';
$password = $input['password'] ?? '';
$stmt = $conn->prepare(
"SELECT id, password FROM users WHERE username = ?"
);
$stmt = $conn->prepare("SELECT id, password FROM users WHERE username = ?");
$stmt->bind_param("s", $username);
$stmt->execute();
$stmt->store_result();