Skip to content

Build Status

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

Notification CenterHTMLCSSany framework
#284
main · deploy:production
Build succeeded · 2m 14s
just now

Copy into your project

HTML
<div class="nuda-buildn">
  <div class="nuda-buildn__hash">#284</div>
  <div class="nuda-buildn__body">
    <div>main · deploy:production</div>
    <span><span class="nuda-buildn__dot"></span> Build succeeded · 2m 14s</span>
  </div>
  <span class="nuda-buildn__time">just now</span>
</div>
CSS
.nuda-buildn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-left: 3px solid #6ee7b7;
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
}

.nuda-buildn__hash {
  font-family: ui-monospace,SFMono-Regular,Menlo,monospace;
  color: #6ee7b7;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.nuda-buildn__body {
  flex: 1;
  font-size: 11px;
  color: #a0a0a8;
}

.nuda-buildn__body > div {
  color: #fafafa;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1px;
}

.nuda-buildn__body > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nuda-buildn__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6ee7b7;
  animation: _bDot 1.4s ease-in-out infinite;
}

.nuda-buildn__time {
  color: #63636e;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

@keyframes _bDot {
  50% {
    opacity: .4;
  }
}

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

How to use Build Status

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 notification center components

← Browse all NudaUI components