Defect count badge
CSSA circular counter pill indicates defect reductions as a verification sweep resolves pending items.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Data and progress
- Use cases
- Dashboards and reporting, Notifications
- Industries
- Construction and built environment, Cross-industry
- Style
- Minimal line · light stroke
- Set
- punchlist
- Tags
- circlecounterloopminimal
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" aria-hidden="true" class="pulsar pulsar-punchlist-badge" data-pulsar="punchlist-badge" viewBox="0 0 160 96"><rect width="60" height="32" x="50" y="32" stroke="currentColor" stroke-width="1.4" class="pill" opacity=".3" rx="16"></rect><circle cx="66" cy="48" r="5" fill="var(--pulsar-accent, currentColor)" class="badge-dot"></circle><line x1="80" x2="98" y1="48" y2="48" stroke="currentColor" stroke-linecap="round" stroke-width="2" class="stat-line"></line></svg>
animation.css
.pulsar-punchlist-badge {
display: block;
width: 100%;
height: 100%;
}
.pulsar-punchlist-badge .pill {
animation: punchlist-badge-pulse 4s ease-in-out infinite;
}
.pulsar-punchlist-badge .badge-dot {
animation: punchlist-badge-dot 4s ease-in-out infinite;
}
.pulsar-punchlist-badge .stat-line {
animation: punchlist-badge-line 4s ease-in-out infinite;
}
@keyframes punchlist-badge-pulse {
0%,
100% {
transform: scale(0.96);
transform-origin: 80px 48px;
opacity: 0.3;
}
50% {
transform: scale(1.04);
transform-origin: 80px 48px;
opacity: 0.8;
}
}
@keyframes punchlist-badge-dot {
0%,
100% {
transform: scale(0.8);
transform-origin: 66px 48px;
opacity: 0.5;
}
50% {
transform: scale(1.3);
transform-origin: 66px 48px;
opacity: 1;
}
}
@keyframes punchlist-badge-line {
0%,
100% {
transform: scaleX(0.7);
transform-origin: 80px center;
opacity: 0.4;
}
50% {
transform: scaleX(1);
transform-origin: 80px center;
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-punchlist-badge .pill,
.pulsar-punchlist-badge .badge-dot,
.pulsar-punchlist-badge .stat-line {
animation: none;
transform: none;
opacity: 1;
}
}