Limits
CSSA resource bar rises towards a dotted ceiling line, turning yellow and stopping just short of the cap.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Errors and warnings, Dashboards and reporting
- Industries
- SaaS and software, Cross-industry
- Style
- Minimal line · light stroke
- Set
- tenant
- Tags
- barschartgeometricminimalui
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-tenant-limits" data-pulsar="tenant-limits" viewBox="0 0 160 96"><line x1="44" x2="116" y1="74" y2="74" stroke="currentColor" stroke-linecap="round" stroke-width="1.5" opacity=".4"></line><line x1="44" x2="116" y1="30" y2="30" stroke="currentColor" stroke-dasharray="3 3" stroke-width="1.5" opacity=".5"></line><circle cx="116" cy="30" r="2" fill="currentColor" opacity=".5"></circle><g class="tenant-limits-bar"><rect width="24" height="40" x="68" y="34" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" rx="3"></rect><circle cx="80" cy="38" r="2.5" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-tenant-limits {
display: block;
overflow: visible;
}
.pulsar-tenant-limits .tenant-limits-bar {
transform-origin: 80px 74px;
animation: tenant-limits-bar-anim 4000ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
@keyframes tenant-limits-bar-anim {
0%,
15% {
transform: scaleY(0.3);
}
42%,
78% {
transform: scaleY(1);
}
92%,
100% {
transform: scaleY(0.3);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-tenant-limits * {
animation: none !important;
}
}