Pulsar

Compliance Perimeter

CSS

A subtle border outline with corner dimension ticks pulses inward, indicating a protected compliance range.

Tier
CSS
Dependencies
None
Duration
4 s, loops
Categories
Backgrounds and ambient
Use cases
Ambient background, Compliance and audit
Industries
Finance and fintech, Cross-industry
Style
Technical · light stroke
Set
treasury
Tags
geometricstrokeminimalambient

Companion assets

The same artwork, not animated. Derived from the entry’s own resting state, so it matches exactly.

Animated
CSS tier
Static vector
Compliance Perimeter, not animated
Download SVG

Code

animation.svg

<svg xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" class="pulsar pulsar-treasury-audit" data-pulsar="treasury-audit" viewBox="0 0 160 96"><rect width="116" height="64" x="22" y="16" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="14 6" stroke-width="1.5" class="audit-boundary" rx="2"></rect><g stroke="currentColor" stroke-width="1.5" class="corner-brackets" opacity=".6"><path d="M16 26v-8h8m120 8v-8h-8M16 70v8h8m120-8v8h-8"></path></g><g stroke="currentColor" class="datum-ticks" opacity=".4"><line x1="80" x2="80" y1="12" y2="20"></line><line x1="80" x2="80" y1="76" y2="84"></line><line x1="18" x2="26" y1="48" y2="48"></line><line x1="134" x2="142" y1="48" y2="48"></line></g><g class="center-badge" transform="translate(80 48)"><circle r="10" stroke="currentColor" stroke-dasharray="2 3" opacity=".35"></circle><path stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m-4 0 3 3 6-6"></path></g></svg>

animation.css

.pulsar-treasury-audit {
  display: block;
  width: 100%;
  height: 100%;
}
.pulsar-treasury-audit .audit-boundary {
  animation: treasury-audit-shift 4s linear infinite;
}
.pulsar-treasury-audit .corner-brackets {
  transform-origin: 80px 48px;
  animation: treasury-audit-corners 4s ease-in-out infinite;
}
.pulsar-treasury-audit .center-badge {
  transform-origin: 80px 48px;
  animation: treasury-audit-badge 4s ease-in-out infinite;
}
.pulsar-treasury-audit .datum-ticks {
  animation: treasury-audit-ticks 4s ease-in-out infinite;
}
@keyframes treasury-audit-shift {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 40;
    opacity: 0.6;
  }
}
@keyframes treasury-audit-corners {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(0.97);
    opacity: 0.9;
  }
}
@keyframes treasury-audit-badge {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
@keyframes treasury-audit-ticks {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pulsar-treasury-audit .audit-boundary,
  .pulsar-treasury-audit .corner-brackets,
  .pulsar-treasury-audit .center-badge,
  .pulsar-treasury-audit .datum-ticks {
    animation: none;
    transform: none;
    opacity: 0.6;
  }
}

From this family15 in Treasury

See the family