game shelf rather than cards

This commit is contained in:
hex
2025-05-19 21:09:50 -07:00
parent c5a60a6c13
commit b59bee07b7
4 changed files with 58 additions and 225 deletions

View File

@@ -1,8 +1,8 @@
:root {
--primary-color: #3a0570;
--primary-light: #6a35a0;
--primary-dark: #260050;
--accent-color: #9c27b0;
--primary-dark: #333333;
--accent-color: #b344c7;
--text-light: #f0f0f0;
--text-dark: #121212;
--bg-dark: #121212;
@@ -11,7 +11,7 @@
--border-color: #333333;
--danger-color: #f44336;
--success-color: #4caf50;
--info-color: #2196f3;
--info-color: #a621f3;
--warning-color: #ff9800;
}
@@ -22,7 +22,7 @@
}
body {
font-family: 'Nunito', sans-serif;
font-family: monospace;
background-color: var(--bg-dark);
color: var(--text-light);
line-height: 1.6;
@@ -152,11 +152,11 @@ footer .heart {
/* Page header */
.page-header {
margin-bottom: 2rem;
margin-top: 2rem;
text-align: center;
}
.page-header h1 {
color: var(--accent-color);
font-size: 2.2rem;
margin-bottom: 0.2rem;
}
@@ -222,9 +222,9 @@ footer .heart {
}
/* Game cards */
.game-cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
.game-list {
display: flex;
flex-direction: column;
gap: 1.5rem;
margin-bottom: 2rem;
}
@@ -239,40 +239,49 @@ footer .heart {
}
.game-card:hover {
transform: translateY(-5px);
transform: translateY(-3px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
background-color: var(--bg-card-hover);
}
.game-cover {
height: 200px;
overflow: hidden;
/* Horizontal card layout */
.game-card.horizontal {
display: flex;
align-items: stretch;
}
.game-cover-side {
width: 120px;
min-width: 120px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
margin: 1rem;
}
.game-cover img {
.game-cover-side img {
width: 100%;
height: 100%;
height: auto;
object-fit: cover;
transition: transform 0.5s;
display: block;
border-radius: 8px;
}
.game-card:hover .game-cover img {
transform: scale(1.1);
}
.no-cover {
.no-cover-medium {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 4rem;
background: linear-gradient(45deg, var(--primary-dark), var(--primary-light));
font-size: 2.5rem;
color: rgba(255, 255, 255, 0.5);
}
.game-info {
padding: 1.2rem;
flex: 1;
}
.game-info h2 {