Style fixes

This commit is contained in:
2026-02-04 21:05:31 +01:00
parent 9a77dfa1a3
commit 07123261f4
4 changed files with 11 additions and 24 deletions

View File

@@ -2,6 +2,15 @@
Also see the other related files: API.md, IIS.md, SPEC.md
## Working Style
- After every iteration, do a git commit with a brief summary of the changes as a commit message.
- If you find unexpected changes in the code (deletions, changes, diff results that were not communicated.), never revert them and never restore the old state. Assume that those changes happened with intent.
- Keep changes small and testable
- Avoid introducing new dependencies unless they remove complexity.
- Keep endpoint logic in `Endpoints/` and shared helpers/DTOs in their folders to avoid Program.cs bloat.
- Keep css and js files diverse to avoid styles.css or app.js bloat.
## Tech constraints:
- .NET 10
- ASP.NET Core Minimal API
@@ -10,13 +19,3 @@ Also see the other related files: API.md, IIS.md, SPEC.md
- Username+Password identity (account stored in database)
- Single active “session” (one room) unless extended later
- Runs on IIS (Windows Server)
## Working Style
- After every iteration, do a git commit with a brief summary of the changes as a commit message.
- If you find unexpected changes in the code, never revert them without asking first.
- Implement API first, UI second
- Keep changes small and testable
- Prefer clarity over abstraction
- Avoid introducing new dependencies unless they remove complexity.
- Keep endpoint logic in `Endpoints/` and shared helpers/DTOs in their folders to avoid Program.cs bloat.

View File

@@ -164,15 +164,3 @@ h3 {
background: #e0564f;
color: #fffaf3;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}

View File

@@ -8,7 +8,8 @@
}
.card h2 {
margin-top: 0;
margin-bottom: 8px;
margin-bottom: 0;
vertical-align: middle;
}
.card-grid {

View File

@@ -1,7 +1,6 @@
.results-table {
width: 100%;
border-collapse: collapse;
table-layout: fixed;
}
.results-table th,
.results-table td {