generated from coulomb/repo-seed
- Integrate file upload controls with status display for cleaner UX - Add dark grey internal styling vs. dark green external theme - Create enhanced SVG template with prominent month indicators - Improve file loading error detection and user guidance - Add visual confirmation system for external resource loading - Update generator to support enhanced template styling - Fix CSV/template loading context binding issues 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
65 lines
1.1 KiB
CSS
65 lines
1.1 KiB
CSS
/* Example Project Dark Green Theme */
|
|
/* This CSS demonstrates successful external stylesheet loading */
|
|
|
|
body {
|
|
background: #1e3a2f !important;
|
|
}
|
|
|
|
#projectName {
|
|
color: #2d8659 !important;
|
|
border-bottom: 2px solid #2d8659;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
#projectSubtitle {
|
|
color: #4a9b6b !important;
|
|
}
|
|
|
|
/* File Manager Override */
|
|
#fileManager {
|
|
background: #243329 !important;
|
|
border-color: #2d8659 !important;
|
|
}
|
|
|
|
#fileManager h3 {
|
|
color: #4a9b6b !important;
|
|
}
|
|
|
|
.file-item {
|
|
background: #2a3f32 !important;
|
|
border-color: #2d8659 !important;
|
|
}
|
|
|
|
.file-item:hover {
|
|
border-color: #4a9b6b !important;
|
|
box-shadow: 0 2px 8px rgba(45, 134, 89, 0.2) !important;
|
|
}
|
|
|
|
.file-label {
|
|
color: #4a9b6b !important;
|
|
}
|
|
|
|
.upload-btn {
|
|
background: #2d8659 !important;
|
|
}
|
|
|
|
.upload-btn:hover {
|
|
background: #1e5a3d !important;
|
|
}
|
|
|
|
/* Buttons */
|
|
button {
|
|
background: #2d8659 !important;
|
|
}
|
|
|
|
button:hover:not(:disabled) {
|
|
background: #4a9b6b !important;
|
|
}
|
|
|
|
/* Viewer */
|
|
#viewer {
|
|
background: #2a3f32 !important;
|
|
border-color: #2d8659 !important;
|
|
color: #e8f5e8 !important;
|
|
}
|