mirror of
https://github.com/sstent/FitTrack_ReportGenerator.git
synced 2026-01-29 10:31:51 +00:00
This commit introduces the initial version of the FitTrack Report Generator, a FastAPI application for analyzing workout files. Key features include: - Parsing of FIT, TCX, and GPX workout files. - Analysis of power, heart rate, speed, and elevation data. - Generation of summary reports and charts. - REST API for single and batch workout analysis. The project structure has been set up with a `src` directory for core logic, an `api` directory for the FastAPI application, and a `tests` directory for unit, integration, and contract tests. The development workflow is configured to use Docker and modern Python tooling.
79 lines
1.2 KiB
CSS
79 lines
1.2 KiB
CSS
/* Mobile-first responsive design */
|
|
@media (max-width: 768px) {
|
|
.layout-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 15px;
|
|
}
|
|
|
|
.sidebar {
|
|
order: 2;
|
|
}
|
|
|
|
.main-content {
|
|
order: 1;
|
|
}
|
|
|
|
.activities-table {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.activities-table th,
|
|
.activities-table td {
|
|
padding: 8px 10px;
|
|
}
|
|
|
|
.nav-tabs {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.container {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.card {
|
|
padding: 15px;
|
|
}
|
|
|
|
.btn {
|
|
padding: 8px 15px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.btn-large {
|
|
padding: 12px 20px;
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.activities-table {
|
|
display: block;
|
|
overflow-x: auto;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.stat-item {
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
|
|
.log-content {
|
|
padding: 5px;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.log-entry {
|
|
padding: 5px;
|
|
}
|
|
|
|
.pagination a {
|
|
padding: 6px 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.form-control {
|
|
padding: 8px;
|
|
font-size: 14px;
|
|
}
|
|
}
|