This commit is contained in:
Nathan 2025-12-01 15:20:21 +07:00
commit 0f00a244d7
2 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@ body {
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
padding: 8px 14px; padding: 8px 14px;
background: rgba(255, 255, 255, 0.45); background: rgb(255, 255, 255);
border-bottom: 2px solid rgba(39, 35, 35, 0.6); border-bottom: 2px solid rgba(39, 35, 35, 0.6);
backdrop-filter: blur(14px); backdrop-filter: blur(14px);
position: sticky; position: sticky;
@ -45,7 +45,7 @@ body {
padding: 5px 12px; padding: 5px 12px;
background: rgb(255, 255, 255); background: rgb(255, 255, 255);
border-radius: 20px; border-radius: 20px;
border: 2px solid rgba(255,255,255,0.8); border: 2px solid rgb(255, 255, 255);
backdrop-filter: blur(8px); backdrop-filter: blur(8px);
color: #003366; color: #003366;
font-weight: 600; font-weight: 600;
@ -66,8 +66,8 @@ body {
} }
.card { .card {
width: 160px; width: 140px;
height: 200px; height: 180px;
perspective: 1000px; perspective: 1000px;
cursor: pointer; cursor: pointer;
} }

View File

@ -40,7 +40,7 @@ $user = $_SESSION['user']; // id, username, role
<p>Pilih tingkat kesulitan untuk memulai permainan</p> <p>Pilih tingkat kesulitan untuk memulai permainan</p>
<div class="stage-grid"> <div class="stage-grid">
<button class="stage" onclick="selectStage('easy')"> <button class="stage" onclick="window.location.href='gameboard-easy.html'">
<h3>Easy Mode</h3> <h3>Easy Mode</h3>
<p>Grid 3x4 (12 kartu)</p> <p>Grid 3x4 (12 kartu)</p>
</button> </button>