Branding
CSSA default generic placeholder box shifts its lines to reform as a client logo, reflecting custom tenant styling.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Onboarding and setup, Success and confirmation
- Industries
- SaaS and software, Cross-industry
- Style
- Minimal line · light stroke
- Set
- tenant
- Tags
- geometricglowminimaluiwipe
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-branding" data-pulsar="tenant-branding" viewBox="0 0 160 96"><rect width="76" height="48" x="42" y="24" stroke="currentColor" stroke-width="1.8" opacity=".4" rx="6"></rect><rect width="76" height="14" x="42" y="24" fill="currentColor" fill-opacity=".1" stroke="currentColor" stroke-width="1.5" class="tenant-branding-hdr" rx="6"></rect><circle cx="54" cy="31" r="3.5" fill="var(--pulsar-accent, currentColor)" class="tenant-branding-badge"></circle><line x1="42" x2="42" y1="24" y2="72" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" class="tenant-branding-sweep"></line></svg>
animation.css
.pulsar-tenant-branding {
display: block;
overflow: visible;
}
.pulsar-tenant-branding .tenant-branding-sweep {
animation: tenant-branding-sweep-anim 4200ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-tenant-branding .tenant-branding-badge {
transform-origin: 54px 31px;
animation: tenant-branding-badge-anim 4200ms ease infinite;
}
@keyframes tenant-branding-sweep-anim {
0%,
15% {
transform: translateX(0);
opacity: 0;
}
20% {
opacity: 1;
}
55% {
transform: translateX(76px);
opacity: 1;
}
62% {
transform: translateX(76px);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 0;
}
}
@keyframes tenant-branding-badge-anim {
0%,
35% {
transform: scale(0.6);
opacity: 0.3;
}
48%,
80% {
transform: scale(1.2);
opacity: 1;
}
92%,
100% {
transform: scale(0.6);
opacity: 0.3;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-tenant-branding * {
animation: none !important;
}
}