Done Step
A copy-paste steppers & wizards component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Steppers & WizardsHTMLCSSany framework
All set!
Your workspace is ready
Copy into your project
HTML
<div class="nuda-done">
<div class="nuda-done__check">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
<path class="nuda-done__path" d="M5 13l4 4L19 7" />
</svg>
<span class="nuda-done__ring"></span>
</div>
<div class="nuda-done__title">All set!</div>
<div class="nuda-done__sub">Your workspace is ready</div>
</div>CSS
.nuda-done {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 24px;
background: rgba(255,255,255,.02);
border: 1px solid rgba(255,255,255,.06);
border-radius: 14px;
width: 100%;
max-width: 280px;
animation: _doneIn .65s cubic-bezier(.16,1,.3,1) both;
}
.nuda-done__check {
position: relative;
width: 54px;
height: 54px;
border-radius: 50%;
background: rgba(110,231,183,.1);
color: #6ee7b7;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 14px;
animation: _donePop .65s cubic-bezier(.16,1,.3,1) .15s both;
}
.nuda-done__check svg {
width: 26px;
height: 26px;
}
.nuda-done__path {
stroke-dasharray: 30;
stroke-dashoffset: 30;
animation: _doneDraw .55s ease forwards .55s;
}
.nuda-done__ring {
position: absolute;
inset: 0;
border-radius: 50%;
border: 2px solid #6ee7b7;
opacity: .6;
animation: _doneRing 1.4s ease-out .4s 1 both;
}
.nuda-done__title {
color: #fafafa;
font-size: 15px;
font-weight: 600;
margin-bottom: 3px;
}
.nuda-done__sub {
color: #a0a0a8;
font-size: 11px;
}
@keyframes _doneIn {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: none;
}
}
@keyframes _donePop {
from {
transform: scale(0);
}
to {
transform: scale(1);
}
}
@keyframes _doneDraw {
to {
stroke-dashoffset: 0;
}
}
@keyframes _doneRing {
0% {
transform: scale(.8);
opacity: .7;
}
100% {
transform: scale(1.6);
opacity: 0;
}
}
@media (prefers-reduced-motion:reduce) {
.nuda-done,.nuda-done__check,.nuda-done__ring {
animation: none;
}
.nuda-done__path {
stroke-dashoffset: 0;
animation: none;
}
}
How to use Done Step
Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.
Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.