feat: complete web UI — dashboard, articles, publish, settings, issues

Made-with: Cursor
This commit is contained in:
cottongin
2026-04-06 15:21:18 -04:00
parent 50ff2e1533
commit ec9f31f072
13 changed files with 718 additions and 0 deletions

38
static/style.css Normal file
View File

@@ -0,0 +1,38 @@
:root {
--pico-font-size: 16px;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin-bottom: 1.5rem;
}
.stat-card {
padding: 1rem;
border: 1px solid var(--pico-muted-border-color);
border-radius: var(--pico-border-radius);
text-align: center;
}
.stat-card .number {
font-size: 2rem;
font-weight: bold;
display: block;
}
.stat-card .label {
font-size: 0.85rem;
color: var(--pico-muted-color);
}
.action-buttons {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
.hidden { display: none !important; }
nav .brand { font-weight: bold; font-size: 1.1rem; }