ZDDC/archive/css/base.css
ZDDC ea385b5366 Initial commit
ZDDC — Zero Day Document Control. A file-naming convention plus five
single-file HTML tools (archive, transmittal, classifier, mdedit,
landing) and an optional Go HTTP server (zddc-server) with ACL and a
virtual archive index. Self-contained, offline-capable, dependency-free.

See README.md for an overview, AGENTS.md and ARCHITECTURE.md for the
build/release/architecture detail, bootstrap/README.md for the
two-level deployment install pattern, and zddc/README.md for the
HTTP server.
2026-04-27 11:05:47 -05:00

32 lines
648 B
CSS

/* Archive-specific base overrides
Reset, tokens, and font are provided by shared/base.css */
#appContainer {
display: flex;
flex-direction: column;
height: 100vh;
overflow: hidden;
}
.note {
font-size: 0.9em;
color: var(--text-muted);
font-style: italic;
}
/* Scan spinner */
.scan-spinner {
display: inline-block;
width: 0.85em;
height: 0.85em;
border: 2px solid var(--border);
border-top-color: var(--primary);
border-radius: 50%;
animation: spin 0.7s linear infinite;
vertical-align: middle;
margin-left: 0.4rem;
}
@keyframes spin {
to { transform: rotate(360deg); }
}