From 97e54f83550fcbd25bf3aad1e6cf1353370ba98c Mon Sep 17 00:00:00 2001 From: Adam Iannazzone <46025473+jiannazzone@users.noreply.github.com> Date: Tue, 24 Sep 2024 11:46:13 -0400 Subject: [PATCH] Implement first pass of screenshot scrolling --- css/style.css | 18 +++- index.html | 224 +++++++++++++++++++++++++++++++++----------- scripts/features.js | 37 ++++---- 3 files changed, 207 insertions(+), 72 deletions(-) diff --git a/css/style.css b/css/style.css index fe71476..ee62168 100644 --- a/css/style.css +++ b/css/style.css @@ -96,27 +96,39 @@ footer { } /* Features Styles */ + #features { background: #000; border-top: var(--rd-purple) 5px solid; border-bottom: var(--rd-purple) 5px solid; } -#feature-card-container { - /* overflow-x: scroll; */ +#feature-card-row, #screenshot-row { flex-wrap: nowrap; scrollbar-width: none; scroll-behavior: smooth; } +.screenshot { + scale: 80%; +} + .feature-card { background: var(--rd-blue); border: white 2px solid; border-radius: 5px; - width: 40%; + cursor: pointer; + scale: 80%; } +.feature-card#active-feature-card, .screenshot#active-screenshot { + scale: 100%; + transition: 0.25s; +} +.feature-card#empty-feature, .screenshot#empty-screenshot { + visibility: hidden; +} .feature-card h3 { color: white; font-family: var(--pixel-font); diff --git a/index.html b/index.html index 292daf6..5d2d164 100644 --- a/index.html +++ b/index.html @@ -54,61 +54,91 @@ href="https://retrodeck.readthedocs.io/en/latest/blog/">Blog