mirror of
https://github.com/thegeneralist01/archivr
synced 2026-07-21 18:55:36 +02:00
* Add SQLite metadata database support * Implement archive metadata database * chore: let's guess cargoHash because there's something wrong with nixpkgs! * Gate test-only database helpers behind cfg(test) * Fix archive database row identity * Use serde for archive metadata JSON * Finalize archive runs at command level * Handle archive command errors without panics * Cover tweet entry metadata recording * Document static regex invariants * docs: add web UI design spec * docs: add web UI implementation plan * chore: move cli into workspace crate * chore: track workspace crates directory * refactor: extract archive core crate * refactor: add core archive opening APIs * refactor: rename taxonomy model to tags * feat: add archive query APIs * feat: add web server registry * feat: expose archive server APIs * feat: add archive table web UI * fix: complete web UI smoke path * docs: add architecture mental model * docs: remove private superpowers plans * nix: split cli and server packages * chore: remove PLAN.md
314 lines
4.6 KiB
CSS
314 lines
4.6 KiB
CSS
:root {
|
|
color-scheme: light;
|
|
--ink: #20251f;
|
|
--muted: #666a61;
|
|
--paper: #f5f0e7;
|
|
--paper-2: #e9e1d2;
|
|
--paper-3: #fffaf0;
|
|
--line: #d2c6b5;
|
|
--line-soft: #e5dccd;
|
|
--accent: #8d3f30;
|
|
--accent-2: #b78342;
|
|
--link: #245f72;
|
|
--top: #141d18;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
background: var(--paper);
|
|
color: var(--ink);
|
|
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select {
|
|
font: inherit;
|
|
}
|
|
|
|
.topbar {
|
|
height: 56px;
|
|
display: grid;
|
|
grid-template-columns: auto minmax(180px, 250px) 1fr auto;
|
|
align-items: center;
|
|
gap: 18px;
|
|
padding: 0 18px;
|
|
background: var(--top);
|
|
color: #f7eedf;
|
|
border-bottom: 3px solid var(--accent);
|
|
}
|
|
|
|
.brand {
|
|
font-family: Georgia, "Times New Roman", serif;
|
|
font-size: 28px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.archive-switcher {
|
|
width: 100%;
|
|
min-width: 0;
|
|
border: 1px solid rgba(247, 238, 223, 0.35);
|
|
background: #202b25;
|
|
color: #f7eedf;
|
|
padding: 7px 9px;
|
|
}
|
|
|
|
.nav {
|
|
display: flex;
|
|
gap: 16px;
|
|
justify-content: flex-end;
|
|
min-width: 0;
|
|
}
|
|
|
|
.nav-link {
|
|
border: 0;
|
|
background: transparent;
|
|
color: #d7cdbf;
|
|
cursor: pointer;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.nav-link.is-active {
|
|
color: #fffaf0;
|
|
border-bottom: 1px solid #fffaf0;
|
|
}
|
|
|
|
.capture-button {
|
|
border: 0;
|
|
background: #f7eedf;
|
|
color: var(--top);
|
|
padding: 9px 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.app-shell {
|
|
height: calc(100vh - 56px);
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) 320px;
|
|
}
|
|
|
|
.workspace {
|
|
min-width: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
.search-row {
|
|
min-height: 76px;
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) max-content;
|
|
gap: 18px;
|
|
align-items: center;
|
|
padding: 14px 16px;
|
|
background: var(--paper-2);
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
.search-input {
|
|
width: 100%;
|
|
height: 46px;
|
|
border: 2px solid var(--ink);
|
|
background: var(--paper-3);
|
|
color: var(--ink);
|
|
padding: 0 14px;
|
|
font-size: 16px;
|
|
outline-offset: 3px;
|
|
}
|
|
|
|
.result-count {
|
|
min-width: 76px;
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
text-align: right;
|
|
}
|
|
|
|
.view {
|
|
display: none;
|
|
}
|
|
|
|
.view.is-active {
|
|
display: block;
|
|
}
|
|
|
|
.entry-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
table-layout: fixed;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.entry-table th {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1;
|
|
text-align: left;
|
|
padding: 10px;
|
|
background: #ded5c7;
|
|
color: #5d625e;
|
|
border-bottom: 1px solid #cec4b5;
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.entry-table td {
|
|
padding: 10px;
|
|
border-bottom: 1px solid var(--line-soft);
|
|
vertical-align: top;
|
|
}
|
|
|
|
.entry-table tr:nth-child(even) td {
|
|
background: #f2ede5;
|
|
}
|
|
|
|
.entry-table tr:nth-child(odd) td {
|
|
background: var(--paper-3);
|
|
}
|
|
|
|
.entry-table tr {
|
|
cursor: default;
|
|
}
|
|
|
|
.entry-table tr.is-selected td {
|
|
background: #eee2d2;
|
|
border-top: 2px solid var(--accent);
|
|
border-bottom: 2px solid var(--accent);
|
|
}
|
|
|
|
.col-added {
|
|
width: 178px;
|
|
}
|
|
|
|
.col-title {
|
|
width: 38%;
|
|
}
|
|
|
|
.col-type {
|
|
width: 130px;
|
|
}
|
|
|
|
.col-size {
|
|
width: 110px;
|
|
}
|
|
|
|
.col-url {
|
|
width: 34%;
|
|
}
|
|
|
|
.entry-title {
|
|
color: var(--link);
|
|
font-weight: 750;
|
|
}
|
|
|
|
.url-cell {
|
|
color: #555b55;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.type-pill {
|
|
display: inline-block;
|
|
padding: 2px 6px;
|
|
background: #d8e3df;
|
|
color: #275a5f;
|
|
border: 1px solid #bfd0ca;
|
|
}
|
|
|
|
.context-rail {
|
|
border-left: 1px solid var(--line);
|
|
background: #efe7dc;
|
|
padding: 18px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.rail-title {
|
|
color: var(--accent);
|
|
font-weight: 800;
|
|
margin-bottom: 10px;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.rail-body {
|
|
color: var(--muted);
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.rail-body strong {
|
|
color: var(--ink);
|
|
}
|
|
|
|
.rail-item {
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
.admin-view {
|
|
padding: 22px;
|
|
}
|
|
|
|
.admin-view h1 {
|
|
margin: 0 0 16px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.admin-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
max-width: 780px;
|
|
}
|
|
|
|
.admin-archive {
|
|
border: 1px solid var(--line);
|
|
background: var(--paper-3);
|
|
padding: 12px;
|
|
}
|
|
|
|
.muted {
|
|
color: var(--muted);
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.topbar {
|
|
grid-template-columns: 1fr auto;
|
|
height: auto;
|
|
min-height: 56px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.archive-switcher,
|
|
.nav {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.nav {
|
|
justify-content: flex-start;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.app-shell {
|
|
height: auto;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.search-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.result-count {
|
|
text-align: left;
|
|
}
|
|
|
|
.context-rail {
|
|
border-left: 0;
|
|
border-top: 1px solid var(--line);
|
|
}
|
|
|
|
.entry-table {
|
|
min-width: 860px;
|
|
}
|
|
}
|