Skip to content

Commit

Permalink
Final: Enhance app functionalities (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangsonww committed Jan 18, 2025
1 parent a47c426 commit ff7013b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions MovieVerse-Frontend/html/games.html
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,25 @@
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
animation: fadeIn 1.5s ease-in-out;
padding: 20px;
flex-wrap: wrap;
}
#c1 > * {
flex: 1 1 45%;
max-width: 600px;
min-width: 200px;
box-sizing: border-box;
}
@media (max-width: 768px) {
#c1 {
flex-direction: column;
}

#c1 > * {
flex: 1 1 100%;
}
}
</style>
</head>
Expand Down Expand Up @@ -464,6 +481,11 @@ <h2 style="margin-top: 50px !important">Mini Games</h2>
<p>How to Play</p>
<a href="how-to-play.html">Learn More</a>
</div>
<div class="card">
<i class="fas fa-trophy"></i>
<p>Leaderboards</p>
<a href="leaderboards.html">View</a>
</div>
</div>

<div
Expand Down

0 comments on commit ff7013b

Please sign in to comment.