Skip to main content
Compendium / Governance & Risk / Audits & Logs / Audit Record Stamp
#544

Audit Record Stamp

Diagonal stamp confirming an event was recorded to the audit log — "RECORDED" with ISO timestamp.

STABLE GO
#stamp #real-content #dark-mode-tested #responsive
Live

// release SPEC-204 v1.2

Sign-off captured and persisted to the immutable governance log; cross-referenced from the release ticket and the waiver register.

RECORDED
2026-05-21T18:30Z
Spec

Intent

Recording is not a side effect; it is the contract. This stamp marks an artefact as having a corresponding immutable audit-log entry, with the exact ISO timestamp for cross-referencing.

Acceptance Criteria

  • [ ] Diagonal stamp at -8deg over context
  • [ ] Stamp text: "RECORDED" + ISO timestamp
  • [ ] Double border using go-pillar token
  • [ ] Negative: does NOT block pointer events

Constraints

  • Pure CSS
  • Theme-aware via tokens
// audit-record-stamp.astro
---
import type { CompendiumMeta } from '../../../data/types';

export const meta: CompendiumMeta = {
  id: 544,
  slug: 'audit-record-stamp',
  name: 'Audit Record Stamp',
  category: 'governance-risk',
  subcategory: 'audits-and-logs',
  pillar: 'go',
  description: 'Diagonal stamp confirming an event was recorded to the audit log — "RECORDED" with ISO timestamp.',
  spec: `## Intent
Recording is not a side effect; it is the contract. This stamp marks an artefact as having a corresponding immutable audit-log entry, with the exact ISO timestamp for cross-referencing.

## Acceptance Criteria
- [ ] Diagonal stamp at -8deg over context
- [ ] Stamp text: "RECORDED" + ISO timestamp
- [ ] Double border using go-pillar token
- [ ] Negative: does NOT block pointer events

## Constraints
- Pure CSS
- Theme-aware via tokens`,
  tags: ['stamp', 'real-content', 'dark-mode-tested', 'responsive'],
  status: 'stable',
  health: { ics: 92, a11y: 'aa', themed: true, animated: false },
};

const iso = '2026-05-21T18:30Z';
---

<section data-this-component class="w-full bg-paper text-black border-4 border-black p-4 relative overflow-hidden">
  <div class="opacity-60">
    <p class="font-mono text-[9px] uppercase tracking-widest mb-1">// release SPEC-204 v1.2</p>
    <p class="text-[11px] leading-snug">
      Sign-off captured and persisted to the immutable governance log;
      cross-referenced from the release ticket and the waiver register.
    </p>
  </div>
  <div class="absolute top-1/2 start-1/2 -translate-x-1/2 -translate-y-1/2 rotate-[-8deg] pointer-events-none">
    <div
      class="border-4 border-go text-black bg-paper/40 px-3 py-2"
      style="box-shadow: inset 0 0 0 2px var(--color-go), 0 0 0 1px var(--color-paper);"
    >
      <div class="font-black text-[14px] uppercase tracking-[0.14em] leading-none">RECORDED</div>
      <div class="font-mono text-[8px] uppercase tracking-widest mt-1 text-center opacity-90">{iso}</div>
    </div>
  </div>
</section>