Add feature screenshots to GitHub Pages

This commit is contained in:
Smittix
2026-01-21 12:10:59 +00:00
parent 5c7554d6cb
commit 0195553a62
8 changed files with 40 additions and 31 deletions

View File

@@ -284,33 +284,30 @@ section h2 {
}
/* Screenshots */
.screenshot-grid {
.screenshot-gallery {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.screenshot-card {
.screenshot-item {
position: relative;
border-radius: 12px;
overflow: hidden;
border: 1px solid var(--border);
transition: all 0.3s;
cursor: pointer;
}
.screenshot-card:hover {
.screenshot-item:hover {
border-color: var(--accent);
transform: scale(1.02);
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0, 212, 170, 0.15);
}
.screenshot-card.main {
grid-row: span 2;
}
.screenshot-card img {
.screenshot-item img {
width: 100%;
height: 100%;
object-fit: cover;
height: auto;
display: block;
}
@@ -319,9 +316,9 @@ section h2 {
bottom: 0;
left: 0;
right: 0;
padding: 12px 16px;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
font-size: 0.85rem;
padding: 16px;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
font-size: 0.9rem;
color: var(--text-primary);
font-weight: 500;
}
@@ -580,12 +577,8 @@ section h2 {
grid-template-columns: repeat(2, 1fr);
}
.screenshot-grid {
grid-template-columns: 1fr;
}
.screenshot-card.main {
grid-row: auto;
.screenshot-gallery {
grid-template-columns: repeat(2, 1fr);
}
.install-options {
@@ -612,6 +605,10 @@ section h2 {
grid-template-columns: 1fr;
}
.screenshot-gallery {
grid-template-columns: 1fr;
}
.nav-links {
display: none;
}