Bulk Action Bar
A copy-paste notification center component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Notification CenterHTMLCSSany framework
3 selected
Copy into your project
HTML
<div class="nuda-bulk">
<span class="nuda-bulk__count">3 selected</span>
<div class="nuda-bulk__actions">
<button>Read</button>
<button>Archive</button>
<button class="is-danger">Delete</button>
</div>
</div>CSS
.nuda-bulk {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 8px 12px;
background: #0c0c10;
border: 1px solid #e4ff54;
border-radius: 10px;
color: #fafafa;
width: 100%;
max-width: 280px;
animation: _bulkIn .4s cubic-bezier(.16,1,.3,1) both;
box-shadow: 0 0 0 3px rgba(228,255,84,.1);
}
.nuda-bulk__count {
font-size: 11px;
color: #e4ff54;
font-weight: 600;
}
.nuda-bulk__actions {
display: inline-flex;
gap: 4px;
}
.nuda-bulk__actions button {
padding: 4px 10px;
background: rgba(255,255,255,.04);
border: 1px solid rgba(255,255,255,.08);
color: #fafafa;
font-size: 10px;
font-weight: 500;
border-radius: 6px;
cursor: pointer;
transition: background .2s;
}
.nuda-bulk__actions button:hover {
background: rgba(255,255,255,.07);
}
.nuda-bulk__actions button.is-danger:hover {
background: rgba(255,94,122,.15);
border-color: #ff5e7a;
color: #ff5e7a;
}
@keyframes _bulkIn {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: none;
}
}
@media (prefers-reduced-motion:reduce) {
.nuda-bulk {
animation: none;
}
}
How to use Bulk Action Bar
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.