Skip to content

Progress Wizard

A copy-paste steppers & wizards component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.

Steppers & WizardsHTMLCSSany framework
Step 2 of 540%
Tell us about your team

Copy into your project

HTML
<div class="nuda-pwiz">
  <div class="nuda-pwiz__head">
    <span>Step 2 of 5</span>
    <span class="nuda-pwiz__pct">40%</span>
  </div>
  <div class="nuda-pwiz__bar">
    <span style="width: 40%"></span>
  </div>
  <div class="nuda-pwiz__title">Tell us about your team</div>
</div>
CSS
.nuda-pwiz {
  padding: 18px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  width: 100%;
  max-width: 300px;
}

.nuda-pwiz__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a0a0a8;
  font-size: 11px;
  margin-bottom: 8px;
}

.nuda-pwiz__pct {
  color: #e4ff54;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.nuda-pwiz__bar {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,.06);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 14px;
}

.nuda-pwiz__bar span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg,#e4ff54,#6ee7b7);
  border-radius: 99px;
  transition: width .6s cubic-bezier(.16,1,.3,1);
}

.nuda-pwiz__bar span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.6),transparent);
  transform: translateX(-100%);
  animation: _pwizShine 1.6s ease-in-out infinite;
}

.nuda-pwiz__title {
  color: #fafafa;
  font-size: 13px;
  font-weight: 600;
}

@keyframes _pwizShine {
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion:reduce) {
  .nuda-pwiz__bar span::after {
    animation: none;
  }
}

How to use Progress Wizard

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.

More steppers & wizards components

← Browse all NudaUI components