Skip to content

Commit

Permalink
Merge pull request #79 from codestorm31/test
Browse files Browse the repository at this point in the history
"Categories" Grid-List Hover Effect Added
  • Loading branch information
MAVRICK-1 authored Jun 13, 2024
2 parents c1a1d46 + 5ccda33 commit 467dff5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,18 @@ body {
gap: 30px;
}

.grid-list li{
transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.grid-list li :hover{
transform: scale(1.1);
}

.category-card h3 :hover{
color: #2ecc71;
}

.category-card,
.stats-card { background-color: hsla(var(--color), 0.1); }

Expand Down

0 comments on commit 467dff5

Please sign in to comment.