Skip to content

Glow Pulse Outline

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

Borders & OutlinesHTMLCSSany framework
Live Status

Copy into your project

HTML
<div class="nuda-bdx-glow-pulse">
  <span class="nuda-bdx-glow-pulse__dot"></span>
  <span class="nuda-bdx-glow-pulse__text">Live Status</span>
</div>
CSS
.nuda-bdx-glow-pulse {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #141414;
  border: 1px solid rgba(228,255,84,.35);
  border-radius: 999px;
  padding: .55rem 1.1rem;
  animation: _nuda-bdxGlowPulse 2.2s ease-in-out infinite alternate;
}

.nuda-bdx-glow-pulse__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e4ff54;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(228,255,84,.7);
  animation: _nuda-bdxDotPing 1.4s ease-in-out infinite;
}

.nuda-bdx-glow-pulse__text {
  color: #fafafa;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
}

@keyframes _nuda-bdxGlowPulse {
  from {
    box-shadow: 0 0 6px rgba(228,255,84,.15),0 0 14px rgba(228,255,84,.08);
  }
  to {
    box-shadow: 0 0 18px rgba(228,255,84,.45),0 0 36px rgba(228,255,84,.2);
  }
}

@keyframes _nuda-bdxDotPing {
  0%,100% {
    box-shadow: 0 0 0 0 rgba(228,255,84,.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(228,255,84,0);
  }
}

@media (prefers-reduced-motion:reduce) {
  .nuda-bdx-glow-pulse,.nuda-bdx-glow-pulse__dot {
    animation: none;
  }
}

How to use Glow Pulse Outline

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 borders & outlines components

← Browse all NudaUI components