From b5f0c3ee2c3060dd9821d42f4e1bcbb87cbbee10 Mon Sep 17 00:00:00 2001 From: Ken D'Ambrosio Date: Mon, 25 May 2026 00:52:19 +0000 Subject: Add recipe overview page linked from dashboard stat card Clicking "Active Recipes" on the dashboard goes to /recipes/overview, which shows favorites and the 12 most recently added recipes as cards. Favorites are highlighted with a red border. Stat card has a hover lift. Co-Authored-By: Claude Sonnet 4.6 --- app/static/css/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'app/static/css/style.css') diff --git a/app/static/css/style.css b/app/static/css/style.css index 7167e05..37d36f6 100644 --- a/app/static/css/style.css +++ b/app/static/css/style.css @@ -67,6 +67,15 @@ body { line-height: 1; } +.stat-card-link { + transition: box-shadow 0.15s, transform 0.15s; + cursor: pointer; +} +.stat-card-link:hover { + box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important; + transform: translateY(-2px); +} + .stat-label { font-size: 0.8rem; color: var(--muted); -- cgit v1.2.3