Skip to content

Commit

Permalink
Update games.html
Browse files Browse the repository at this point in the history
  • Loading branch information
xdevnightless authored Nov 10, 2024
1 parent f7f2e1b commit 23a7498
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions games.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,14 @@
}

.shadow-navbar ul li:hover::after {
width: 60%; /* Narrower underline on hover */
width: 60%;
}
.card a {
color: #ffcc00;
.card:hover {
transform: translateY(-5px);
}

.card a {
color: #ffcc00;
text-decoration: none;
}

Expand All @@ -114,11 +118,9 @@
margin: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
}

.card:hover {
transform: translateY(-5px);
}





Expand Down Expand Up @@ -165,15 +167,16 @@
box-shadow: none !important;
outline: none !important;
}
.body {
background-color: black;
body {
background-color: black;
color: white;
margin-top: 80px;
margin-top: 80px;
}

.game-card-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Make cards responsive */
gap: 20px; /* Space between cards */
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
padding: 20px;
}

Expand Down

0 comments on commit 23a7498

Please sign in to comment.