18 lines
1.2 KiB
CSS
Executable File
18 lines
1.2 KiB
CSS
Executable File
* { box-sizing: border-box; }
|
|
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial; background: #f6f7fb; color: #111; }
|
|
.container { max-width: 900px; margin: 0 auto; padding: 24px; }
|
|
.header { margin-bottom: 18px; }
|
|
.card { background: white; border-radius: 12px; padding: 16px; margin-bottom: 16px; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
|
|
label { display: block; margin-bottom: 10px; }
|
|
input, textarea, select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 10px; }
|
|
textarea { min-height: 80px; resize: vertical; }
|
|
button { padding: 10px 12px; border: 0; border-radius: 10px; cursor: pointer; background: #111; color: white; }
|
|
button.secondary { background: #e9e9ef; color: #111; }
|
|
.row { display:flex; align-items:center; justify-content:space-between; gap: 10px; }
|
|
.task { border: 1px solid #eee; border-radius: 10px; padding: 12px; margin-top: 10px; }
|
|
.task h3 { margin: 0 0 6px 0; }
|
|
.task small { color: #555; }
|
|
.task .actions { margin-top: 10px; display:flex; gap: 8px; flex-wrap: wrap; }
|
|
.badge { display:inline-block; padding: 2px 8px; border-radius: 999px; background:#f0f0f7; font-size: 12px; }
|
|
.footer { opacity: .8; }
|