All checks were successful
release-tag / release-image (push) Successful in 1m32s
19 lines
1.6 KiB
CSS
19 lines
1.6 KiB
CSS
:root { --bg: #0b0f14; --fg: #e6eef8; --muted: #9bb0c8; --card: #121923; --accent: #5aa9ff; }
|
|
* { box-sizing: border-box; }
|
|
body { margin: 0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif; background: var(--bg); color: var(--fg); }
|
|
header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: #0e141b; border-bottom: 1px solid #2a3543; }
|
|
h1 { margin: 0; font-size: 20px; }
|
|
.cfg label { margin-right: 8px; font-size: 12px; color: var(--muted); }
|
|
.cfg input { margin-left: 6px; padding: 6px 8px; background: #0c1219; border: 1px solid #2a3543; color: var(--fg); border-radius: 6px; }
|
|
button { padding: 8px 12px; border: 1px solid #2a3543; background: #111a24; color: var(--fg); border-radius: 8px; cursor: pointer; }
|
|
button:hover { border-color: var(--accent); }
|
|
main { padding: 20px; max-width: 1100px; margin: 0 auto; }
|
|
.card { background: var(--card); border: 1px solid #1f2a38; border-radius: 14px; padding: 16px; margin-bottom: 16px; box-shadow: 0 6px 20px rgba(0,0,0,.25); }
|
|
.toolbar { display:flex; gap: 8px; align-items: center; margin-bottom: 10px; }
|
|
table { width: 100%; border-collapse: collapse; }
|
|
th, td { text-align: left; padding: 8px; border-bottom: 1px solid #213043; }
|
|
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; }
|
|
.name { max-width: 340px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.pager { display:flex; gap: 8px; align-items:center; justify-content:flex-end; padding-top: 8px; }
|
|
.actions button { margin-right: 6px; }
|
|
summary { cursor: pointer; } |