Workspace
CSSA central folder icon expands into three stacked workspace layers, representing segmented organizational units.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Onboarding and setup, Workflow and approvals
- Industries
- SaaS and software, Cross-industry
- Style
- Minimal line · light stroke
- Set
- tenant
- Tags
- barsgeometricminimaluistroke
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-workspace" data-pulsar="tenant-workspace" viewBox="0 0 160 96"><path stroke="currentColor" stroke-width="1.5" d="m40 58 40-18 40 18-40 18Z" class="tenant-workspace-layer-3" opacity=".3"></path><path stroke="currentColor" stroke-width="1.5" d="m40 48 40-18 40 18-40 18Z" class="tenant-workspace-layer-2" opacity=".5"></path><path fill="var(--pulsar-accent, currentColor)" fill-opacity=".15" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" d="m40 38 40-18 40 18-40 18Z" class="tenant-workspace-layer-1"></path><circle cx="80" cy="38" r="3" fill="var(--pulsar-accent, currentColor)" class="tenant-workspace-pin"></circle></svg>
animation.css
.pulsar-tenant-workspace {
display: block;
overflow: visible;
}
.pulsar-tenant-workspace .tenant-workspace-layer-1 {
animation: tenant-workspace-layer1-anim 4200ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-tenant-workspace .tenant-workspace-pin {
animation: tenant-workspace-pin-anim 4200ms ease infinite;
}
@keyframes tenant-workspace-layer1-anim {
0%,
15% {
transform: translateY(0);
}
40%,
78% {
transform: translateY(-10px);
}
92%,
100% {
transform: translateY(0);
}
}
@keyframes tenant-workspace-pin-anim {
0%,
15% {
transform: translateY(0) scale(0.8);
opacity: 0.5;
}
40%,
78% {
transform: translateY(-10px) scale(1.2);
opacity: 1;
}
92%,
100% {
transform: translateY(0) scale(0.8);
opacity: 0.5;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-tenant-workspace * {
animation: none !important;
}
}