Express-Server für Appwrite-Auth, Session, Projekt-Dashboard und Gitea-Webhook; statisches Frontend und Schema-Dokumentation für woms-database. Co-authored-by: Cursor <cursoragent@cursor.com>
58 lines
1.4 KiB
CSS
58 lines
1.4 KiB
CSS
:root {
|
|
--bg: #0f1419;
|
|
--card: #1a2332;
|
|
--text: #e7ecf3;
|
|
--accent: #3b82f6;
|
|
--muted: #94a3b8;
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
body {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
margin: 0;
|
|
line-height: 1.5;
|
|
}
|
|
header {
|
|
padding: 1rem 2rem;
|
|
border-bottom: 1px solid #2d3a4f;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
header h1 { margin: 0; font-size: 1.25rem; }
|
|
nav a { color: var(--accent); margin-left: 1rem; text-decoration: none; }
|
|
main { max-width: 900px; margin: 2rem auto; padding: 0 1.5rem; }
|
|
.card, .project-card {
|
|
background: var(--card);
|
|
border-radius: 8px;
|
|
padding: 1.25rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
label { display: block; margin-bottom: 0.75rem; }
|
|
input, textarea, select {
|
|
width: 100%;
|
|
padding: 0.5rem;
|
|
margin-top: 0.25rem;
|
|
border-radius: 4px;
|
|
border: 1px solid #334155;
|
|
background: #0f172a;
|
|
color: var(--text);
|
|
}
|
|
button, .btn {
|
|
background: var(--accent);
|
|
color: #fff;
|
|
border: none;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
}
|
|
.error { color: #f87171; }
|
|
.projects { list-style: none; padding: 0; }
|
|
table { width: 100%; border-collapse: collapse; }
|
|
td, th { padding: 0.5rem; border-bottom: 1px solid #334155; text-align: left; }
|
|
form.inline { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
|