Wizard Tabs
A copy-paste steppers & wizards component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Steppers & WizardsHTMLCSSany framework
Copy into your project
HTML
<div class="nuda-wizardtabs">
<button class="nuda-wizardtabs__tab is-done">
<span>1</span>Account
</button>
<button class="nuda-wizardtabs__tab is-active">
<span>2</span>Workspace
</button>
<button class="nuda-wizardtabs__tab">
<span>3</span>Done
</button>
</div>CSS
.nuda-wizardtabs {
display: inline-flex;
background: rgba(0,0,0,.3);
border: 1px solid rgba(255,255,255,.06);
border-radius: 10px;
padding: 4px;
gap: 4px;
}
.nuda-wizardtabs__tab {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 12px;
background: transparent;
border: 0;
border-radius: 7px;
color: #63636e;
font-size: 11px;
font-weight: 500;
cursor: pointer;
transition: background .25s,color .25s;
}
.nuda-wizardtabs__tab span {
display: inline-flex;
align-items: center;
justify-content: center;
width: 18px;
height: 18px;
border-radius: 50%;
background: rgba(255,255,255,.06);
font-size: 10px;
font-weight: 700;
transition: background .35s,color .35s,transform .25s;
}
.nuda-wizardtabs__tab.is-done {
color: #a0a0a8;
}
.nuda-wizardtabs__tab.is-done span {
background: #e4ff54;
color: #09090b;
}
.nuda-wizardtabs__tab.is-active {
background: rgba(228,255,84,.08);
color: #e4ff54;
}
.nuda-wizardtabs__tab.is-active span {
background: #e4ff54;
color: #09090b;
transform: scale(1.1);
}
.nuda-wizardtabs__tab:hover:not(.is-active):not(.is-done) {
color: #fafafa;
background: rgba(255,255,255,.04);
}
How to use Wizard Tabs
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.