Files
ash-pages/workout/index.html
T

62 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Workouts — Ash Pages</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #0f0f0f;
color: #e0e0e0;
min-height: 100vh;
display: flex;
justify-content: center;
padding: 40px 20px;
}
.container { max-width: 600px; width: 100%; }
h1 { font-size: 1.8rem; margin-bottom: 4px; color: #f97316; }
.breadcrumb { color: #666; margin-bottom: 24px; font-size: 0.85rem; }
.breadcrumb a { color: #888; text-decoration: none; }
.breadcrumb a:hover { color: #f97316; }
.empty {
color: #555;
text-align: center;
padding: 48px 20px;
background: rgba(255,255,255,0.03);
border-radius: 12px;
border: 1px dashed rgba(255,255,255,0.1);
}
.empty .icon { font-size: 2rem; margin-bottom: 12px; }
.card {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 12px;
padding: 16px 20px;
margin-bottom: 8px;
text-decoration: none;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.2s;
}
a.card:hover { background: rgba(255,255,255,0.08); }
.card .date { color: #e0e0e0; font-weight: 500; }
.card .session { color: #888; font-size: 0.85rem; }
</style>
</head>
<body>
<div class="container">
<p class="breadcrumb"><a href="../">Ash Pages</a> /</p>
<h1>💪 Workouts</h1>
<p style="color:#888; margin-bottom:24px;">KB+DB Circuit — 3x/week, A/B/C rotation</p>
<div class="empty">
<div class="icon">🏋️</div>
<p>No workout cards yet.<br>First one drops next session.</p>
</div>
</div>
</body>
</html>