- Add rules_engine.py with quantitative rules for all 8 workout types - Add quality gate retry loop in generate_single_workout() - Expand calibrate_structure_rules to all 120 combinations (8 types × 5 goals × 3 sections) - Wire WeeklySplitPattern DB records into _pick_weekly_split() - Enforce movement patterns from WorkoutStructureRule in exercise selection - Add straight-set strength support (single main lift, 4-6 rounds) - Add modality consistency check for duration-dominant workout types - Add InjuryStep component to onboarding and preferences - Add sibling exercise exclusion in regenerate and preview_day endpoints - Display generator warnings on dashboard - Expand fix_rep_durations, fix_exercise_flags, fix_movement_pattern_typo - Add audit_exercise_data and check_rules_drift management commands - Add Next.js frontend with dashboard, onboarding, preferences, history pages - Add generator app with ML-powered workout generation pipeline - 96 new tests across 7 test modules Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
45 lines
959 B
CSS
45 lines
959 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/* Range slider custom styling */
|
|
input[type="range"].range-slider {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
accent-color: #39ff14;
|
|
}
|
|
|
|
input[type="range"].range-slider::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 50%;
|
|
background: #39ff14;
|
|
cursor: pointer;
|
|
border: 2px solid #09090b;
|
|
box-shadow: 0 0 6px rgba(57, 255, 20, 0.4);
|
|
}
|
|
|
|
input[type="range"].range-slider::-moz-range-thumb {
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 50%;
|
|
background: #39ff14;
|
|
cursor: pointer;
|
|
border: 2px solid #09090b;
|
|
box-shadow: 0 0 6px rgba(57, 255, 20, 0.4);
|
|
}
|
|
|
|
input[type="range"].range-slider::-webkit-slider-runnable-track {
|
|
height: 8px;
|
|
border-radius: 9999px;
|
|
background: #3f3f46;
|
|
}
|
|
|
|
input[type="range"].range-slider::-moz-range-track {
|
|
height: 8px;
|
|
border-radius: 9999px;
|
|
background: #3f3f46;
|
|
}
|