docs: massive restructuring of documentation, development guides and agent playbooks
This commit is contained in:
@@ -0,0 +1,323 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Nennmaske Entwurf</title>
|
||||
<style>
|
||||
:root {
|
||||
--bg-color: #f4f7f6;
|
||||
--border-color: #d1d5db;
|
||||
--primary-blue: #3f51b5;
|
||||
--text-main: #333;
|
||||
--header-bg: #ffffff;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
background-color: var(--bg-color);
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
font-size: 13px;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
/* Layout Struktur */
|
||||
.container {
|
||||
display: grid;
|
||||
grid-template-rows: 1fr auto 1fr;
|
||||
gap: 10px;
|
||||
height: 95vh;
|
||||
}
|
||||
|
||||
.top-row {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1.2fr;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.bottom-row {
|
||||
display: grid;
|
||||
grid-template-columns: 1.5fr 1fr;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
/* Gemeinsame Panel-Styles */
|
||||
.panel {
|
||||
background: white;
|
||||
border: 1px solid var(--border-color);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.panel-header {
|
||||
padding: 8px;
|
||||
background: #fff;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.panel-content {
|
||||
flex-grow: 1;
|
||||
overflow-y: auto;
|
||||
background: #fff;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
/* Formular Elemente */
|
||||
input[type="text"] {
|
||||
flex-grow: 1;
|
||||
padding: 5px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 5px 12px;
|
||||
border: 1px solid var(--border-color);
|
||||
background: white;
|
||||
cursor: pointer;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
border-color: var(--primary-blue);
|
||||
color: var(--primary-blue);
|
||||
}
|
||||
|
||||
.action-bar-center {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
background: var(--primary-blue);
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 8px 20px;
|
||||
border-radius: 6px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
/* Tabellen Styles */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
th {
|
||||
background: #f9fafb;
|
||||
text-align: left;
|
||||
padding: 8px;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 6px 8px;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
|
||||
.row-selected {
|
||||
background-color: #fff9c4;
|
||||
}
|
||||
|
||||
/* Spezifische Anpassungen */
|
||||
.footer-btns {
|
||||
padding: 8px;
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
border-top: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.footer-btns button {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.tabs {
|
||||
display: flex;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.tab {
|
||||
padding: 8px 15px;
|
||||
cursor: pointer;
|
||||
border-bottom: 2px solid transparent;
|
||||
}
|
||||
|
||||
.tab.active {
|
||||
color: var(--primary-blue);
|
||||
border-bottom: 2px solid var(--primary-blue);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.qty-input {
|
||||
width: 40px;
|
||||
text-align: center;
|
||||
border: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="top-row">
|
||||
<div class="panel">
|
||||
<div class="panel-header">
|
||||
<strong>Pferd:</strong>
|
||||
<input type="text" placeholder="Kopfnummer oder Name">
|
||||
<button>...</button>
|
||||
<button>Leeren</button>
|
||||
</div>
|
||||
<div class="panel-content">
|
||||
<div class="empty-state">Keine Ergebnisse</div>
|
||||
</div>
|
||||
<div class="footer-btns">
|
||||
<button class="btn-primary">Neu</button>
|
||||
<button disabled>Bearbeiten</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel">
|
||||
<div class="panel-header">
|
||||
<strong>Reiter:</strong>
|
||||
<input type="text" placeholder="Vorname und/oder Nachname">
|
||||
<button>...</button>
|
||||
<button>Leeren</button>
|
||||
</div>
|
||||
<div class="panel-content">
|
||||
<div class="empty-state">Keine Ergebnisse</div>
|
||||
</div>
|
||||
<div class="footer-btns">
|
||||
<button class="btn-primary">Neu</button>
|
||||
<button disabled>Bearbeiten</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel">
|
||||
<div class="tabs">
|
||||
<div class="tab active">VERKAUF</div>
|
||||
<div class="tab">BUCHUNGEN</div>
|
||||
</div>
|
||||
<div class="panel-header" style="justify-content: space-between;">
|
||||
<span>11 Artikel</span>
|
||||
<div>
|
||||
<a href="#" style="font-size: 11px; margin-right: 10px;">Rückgängig</a>
|
||||
<a href="#" style="font-size: 11px; font-weight: bold;">Speichern</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel-content">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>KNr</th>
|
||||
<th>+/-</th>
|
||||
<th>Menge</th>
|
||||
<th>Buchungstext</th>
|
||||
<th>Betrag</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td></td><td>+</td><td><input class="qty-input" value="0"></td><td>Belastung</td><td>0.00</td></tr>
|
||||
<tr class="row-selected"><td></td><td>+</td><td><input class="qty-input" value="0"></td><td>Gutschrift</td><td>0.00</td></tr>
|
||||
<tr><td></td><td>+</td><td><input class="qty-input" value="0"></td><td>Boxenpauschale</td><td>0.00</td></tr>
|
||||
<tr><td></td><td>+</td><td><input class="qty-input" value="0"></td><td>Ansage</td><td>0.00</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="action-bar-center">
|
||||
<button class="nav-btn">☰ Startliste</button>
|
||||
<button class="nav-btn">🏆 Ergebnisse</button>
|
||||
<button class="nav-btn">📄 Abrechnung</button>
|
||||
</div>
|
||||
|
||||
<div class="bottom-row">
|
||||
<div class="panel">
|
||||
<div class="tabs">
|
||||
<div class="tab active">REITER</div>
|
||||
<div class="tab">PFERD</div>
|
||||
<div class="tab">BEWERBE</div>
|
||||
</div>
|
||||
<div class="panel-header" style="justify-content: space-between; background: #fafafa;">
|
||||
<span>0 Nennungen</span>
|
||||
<div style="color: var(--primary-blue);">
|
||||
<span style="margin-right: 10px; cursor: pointer;">Positionieren</span>
|
||||
<span style="cursor: pointer;">Stornieren</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel-content">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Tag</th>
|
||||
<th>Pl.</th>
|
||||
<th>Bewerb</th>
|
||||
<th>Bewerbsname</th>
|
||||
<th>Bemerkung</th>
|
||||
<th>Pferd</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
<div class="empty-state" style="margin-top: 50px;">Keine Nennungen vorhanden</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel">
|
||||
<div class="panel-header" style="justify-content: space-between;">
|
||||
<strong>Bewerbsübersicht</strong>
|
||||
</div>
|
||||
<div class="panel-header" style="justify-content: space-between; font-size: 11px;">
|
||||
<span>12 Bewerbe</span>
|
||||
<span style="color: var(--primary-blue);">Filtern</span>
|
||||
</div>
|
||||
<div class="panel-content">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Tag</th>
|
||||
<th>Pl.</th>
|
||||
<th>Bew.</th>
|
||||
<th>Beginn</th>
|
||||
<th>Nenn.</th>
|
||||
<th>Bewerbsname</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td>So</td><td>1</td><td><strong>1</strong></td><td>08:00</td><td>0</td><td>Dressurreiterprüfung Ratepass</td></tr>
|
||||
<tr><td>So</td><td>1</td><td><strong>2</strong></td><td>08:20</td><td>0</td><td>Dressurreiterprüfung Katecnadel</td></tr>
|
||||
<tr><td>So</td><td>1</td><td><strong>3</strong></td><td>08:40</td><td>0</td><td>Dressurreiterprüfung Idf.</td></tr>
|
||||
<tr><td>So</td><td>1</td><td><strong>4</strong></td><td>09:00</td><td>0</td><td>Dressurprüfung Idf.</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div style="padding: 5px; text-align: center; font-size: 11px; color: #777;">
|
||||
Bitte wählen Sie zuerst ein Pferd und einen Reiter aus
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user