Manifest Archival
CSSA completed manifest ledger readout dims steadily into a settled archival state sealed with a verification baseline rule.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Documents and files, Compliance and audit
- Industries
- Logistics and supply chain, Cross-industry
- Style
- Data mark · light stroke
- Set
- manifest
- Tags
- linebarsminimal
Companion assets
The same artwork, not animated. Derived from the entry’s own resting state, so it matches exactly.
Code
animation.svg
<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" class="pulsar pulsar-manifest-archival" data-pulsar="manifest-archival" viewBox="0 0 160 96"><rect width="88" height="48" x="36" y="24" stroke-width="1.5" opacity=".35" rx="3"></rect><line x1="46" x2="108" y1="34" y2="34" stroke-width="1.5" class="ledger-row r1"></line><line x1="46" x2="116" y1="46" y2="46" stroke-width="1.5" class="ledger-row r2"></line><line x1="46" x2="96" y1="58" y2="58" stroke-width="1.5" class="ledger-row r3"></line><line x1="36" x2="124" y1="72" y2="72" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="seal-line"></line></svg>
animation.css
.pulsar-manifest-archival {
display: block;
overflow: visible;
}
.pulsar-manifest-archival .ledger-row.r1 {
animation: manifest-archival-r1 4000ms ease-in-out infinite;
}
.pulsar-manifest-archival .ledger-row.r2 {
animation: manifest-archival-r2 4000ms ease-in-out infinite;
}
.pulsar-manifest-archival .ledger-row.r3 {
animation: manifest-archival-r3 4000ms ease-in-out infinite;
}
.pulsar-manifest-archival .seal-line {
stroke-dasharray: 88;
stroke-dashoffset: 88;
animation: manifest-archival-seal 4000ms ease-in-out infinite;
}
@keyframes manifest-archival-r1 {
0%,
25% {
opacity: 0.8;
}
50%,
85% {
opacity: 0.25;
}
95%,
100% {
opacity: 0.8;
}
}
@keyframes manifest-archival-r2 {
0%,
30% {
opacity: 0.8;
}
55%,
85% {
opacity: 0.25;
}
95%,
100% {
opacity: 0.8;
}
}
@keyframes manifest-archival-r3 {
0%,
35% {
opacity: 0.8;
}
60%,
85% {
opacity: 0.25;
}
95%,
100% {
opacity: 0.8;
}
}
@keyframes manifest-archival-seal {
0%,
40% {
stroke-dashoffset: 88;
opacity: 0.2;
}
60%,
85% {
stroke-dashoffset: 0;
opacity: 1;
}
95%,
100% {
stroke-dashoffset: 88;
opacity: 0.2;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-manifest-archival .ledger-row.r1,
.pulsar-manifest-archival .ledger-row.r2,
.pulsar-manifest-archival .ledger-row.r3,
.pulsar-manifest-archival .seal-line {
animation: none;
transform: none;
opacity: 1;
stroke-dashoffset: 0;
}
}