Inbox Zero
A copy-paste notification center component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Notification CenterHTMLCSSany framework
🎉
Inbox zero
You're all caught up
Copy into your project
HTML
<div class="nuda-inboxz">
<span class="nuda-inboxz__emoji">🎉</span>
<div class="nuda-inboxz__title">Inbox zero</div>
<div class="nuda-inboxz__sub">You're all caught up</div>
</div>CSS
.nuda-inboxz {
display: flex;
flex-direction: column;
align-items: center;
padding: 24px;
text-align: center;
background: rgba(110,231,183,.04);
border: 1px dashed rgba(110,231,183,.3);
border-radius: 12px;
width: 100%;
max-width: 240px;
}
.nuda-inboxz__emoji {
font-size: 32px;
margin-bottom: 6px;
animation: _inboxzBounce 2s ease-in-out infinite;
}
.nuda-inboxz__title {
color: #6ee7b7;
font-size: 14px;
font-weight: 700;
}
.nuda-inboxz__sub {
color: #a0a0a8;
font-size: 11px;
margin-top: 2px;
}
@keyframes _inboxzBounce {
0%,100% {
transform: translateY(0) rotate(0);
}
50% {
transform: translateY(-4px) rotate(8deg);
}
}
@media (prefers-reduced-motion:reduce) {
.nuda-inboxz__emoji {
animation: none;
}
}
How to use Inbox Zero
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.