A sidebar menu that conveys progress and state through tone changes rather than indicators or icons.
HTML
<nav class="sidebar-step">
<span class="is-done">Setup</span>
<span class="is-active">Billing</span>
<span>Launch</span>
</nav>CSS
.sidebar-step {
width: 200px;
padding: 0.6rem;
border-radius: 18px;
background: #ECECEC;
display: grid;
gap: 0.25rem;
font-size: 12px;
}
.sidebar-step span {
padding: 0.45rem 0.6rem;
border-radius: 12px;
color: #9ca3af;
}
.sidebar-step .is-active {
background: #6366f1;
color: #ffffff;
font-weight: 600;
}
.sidebar-step .is-done {
background: #052e16;
color: #4ade80;
}Notes
- Step-based navigation clarity
- No arrows or badges
- Suitable for onboarding flows
Preview styles shown. Production customization recommended.
Browse More UI Components
Explore hundreds of reusable HTML & CSS UI components built for modern web projects.
Discover buttons, cards, loaders, animations, layouts, and more all with live previews and clean, copy-paste code.
