- Move 12 markdown files from root to docs/ subdirectories - Organize documentation by category: • docs/troubleshooting/ (1 file) - Technical troubleshooting guides • docs/deployment/ (4 files) - Deployment and security documentation • docs/guides/ (3 files) - Feature-specific guides • docs/planning/ (4 files) - Planning and improvement proposals Root directory cleanup: - Reduced from 16 to 4 markdown files in root - Only essential project files remain: • CLAUDE.md (AI instructions) • README.md (Main project readme) • CLEANUP_PLAN.md (Current cleanup plan) • SRC_STRUCTURE_IMPROVEMENTS.md (Structure improvements) This improves: ✅ Documentation discoverability ✅ Logical organization by purpose ✅ Clean root directory ✅ Better maintainability
46 lines
773 B
CSS
46 lines
773 B
CSS
/* Hot Reload Test Styles */
|
|
body {
|
|
font-family: monospace;
|
|
margin: 20px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
border-bottom: 2px solid #007cba;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
#log {
|
|
background: #f0f0f0;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
padding: 10px;
|
|
margin-top: 10px;
|
|
height: 400px;
|
|
overflow-y: scroll;
|
|
font-family: 'Courier New', monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#status {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
background: #e8e8e8;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#log p {
|
|
margin: 2px 0;
|
|
padding: 2px 0;
|
|
}
|
|
|
|
#log p:hover {
|
|
background: #e0e0e0;
|
|
}
|
|
|
|
.connected { color: green; }
|
|
.error { color: red; }
|
|
.warning { color: orange; } |