Limit
CSSA grid of twelve user blocks fills up, causing a solid red warning border to outline the final available block.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Dashboards and reporting, Security and trust
- Industries
- SaaS and software, Cross-industry
- Style
- Duotone · light stroke
- Set
- seat
- Tags
- gridpulsegeometricminimalbars
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-seat-limit" data-pulsar="seat-limit" viewBox="0 0 160 96"><rect width="18" height="14" x="34" y="22" fill="currentColor" fill-opacity=".25" stroke="currentColor" stroke-width="1.25" opacity=".7" rx="4"></rect><rect width="18" height="14" x="58" y="22" fill="currentColor" fill-opacity=".25" stroke="currentColor" stroke-width="1.25" opacity=".7" rx="4"></rect><rect width="18" height="14" x="82" y="22" fill="currentColor" fill-opacity=".25" stroke="currentColor" stroke-width="1.25" opacity=".7" rx="4"></rect><rect width="18" height="14" x="106" y="22" fill="currentColor" fill-opacity=".25" stroke="currentColor" stroke-width="1.25" opacity=".7" rx="4"></rect><rect width="18" height="14" x="34" y="42" fill="currentColor" fill-opacity=".25" stroke="currentColor" stroke-width="1.25" opacity=".7" rx="4"></rect><rect width="18" height="14" x="58" y="42" fill="currentColor" fill-opacity=".25" stroke="currentColor" stroke-width="1.25" opacity=".7" rx="4"></rect><rect width="18" height="14" x="82" y="42" fill="currentColor" fill-opacity=".25" stroke="currentColor" stroke-width="1.25" opacity=".7" rx="4"></rect><rect width="18" height="14" x="106" y="42" fill="currentColor" fill-opacity=".25" stroke="currentColor" stroke-width="1.25" opacity=".7" rx="4"></rect><rect width="18" height="14" x="34" y="62" fill="currentColor" fill-opacity=".25" stroke="currentColor" stroke-width="1.25" opacity=".7" rx="4"></rect><rect width="18" height="14" x="58" y="62" fill="currentColor" fill-opacity=".25" stroke="currentColor" stroke-width="1.25" opacity=".7" rx="4"></rect><rect width="18" height="14" x="82" y="62" fill="currentColor" fill-opacity=".25" stroke="currentColor" stroke-width="1.25" opacity=".7" rx="4"></rect><g class="seat-limit-final"><rect width="18" height="14" x="106" y="62" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" rx="4"></rect><circle cx="115" cy="69" r="3" fill="var(--pulsar-accent, currentColor)"></circle></g></svg>
animation.css
.pulsar-seat-limit {
display: block;
overflow: visible;
}
.pulsar-seat-limit .seat-limit-final {
animation: seat-limit-final-anim 4400ms ease-in-out infinite;
transform-origin: 115px 69px;
}
@keyframes seat-limit-final-anim {
0%,
15% {
transform: scale(1);
opacity: 0.5;
}
35%,
75% {
transform: scale(1.15);
opacity: 1;
}
90%,
100% {
transform: scale(1);
opacity: 0.5;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-seat-limit .seat-limit-final {
animation: none;
}
}