summaryrefslogtreecommitdiffstats
path: root/app/static
diff options
context:
space:
mode:
authorKen D'Ambrosio <ken@claude>2026-05-25 00:52:19 +0000
committerKen D'Ambrosio <ken@claude>2026-05-25 00:52:19 +0000
commitb5f0c3ee2c3060dd9821d42f4e1bcbb87cbbee10 (patch)
treee3ae9394a10871e0acfb67329200e8a1939a5bb1 /app/static
parent55bcec90c14db6f2956ed51cf4df1503c0767f81 (diff)
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 <noreply@anthropic.com>
Diffstat (limited to 'app/static')
-rw-r--r--app/static/css/style.css9
1 files changed, 9 insertions, 0 deletions
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);