Status Footer
A copy-paste footers component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
FootersHTMLCSSany framework
Copy into your project
HTML
<footer class="nuda-footer-status">
<div class="nuda-footer-status__pill">
<span class="nuda-footer-status__dot"></span>
All systems operational
</div>
<span class="nuda-footer-status__meta">v0.1.0 · uptime 99.99%</span>
</footer>CSS
.nuda-footer-status {
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
padding: 14px 18px;
background: rgba(255,255,255,.02);
border: 1px solid rgba(255,255,255,.06);
border-radius: 12px;
font-size: 12px;
color: #a0a0a8;
width: 100%;
max-width: 520px;
flex-wrap: wrap;
}
.nuda-footer-status__pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 5px 12px;
background: rgba(110,231,183,.08);
border: 1px solid rgba(110,231,183,.2);
border-radius: 999px;
color: #6ee7b7;
font-weight: 500;
}
.nuda-footer-status__dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: #6ee7b7;
position: relative;
}
.nuda-footer-status__dot::after {
content: '';
position: absolute;
inset: -4px;
border-radius: 50%;
border: 2px solid rgba(110,231,183,.6);
animation: _statusPing 2s ease-out infinite;
}
@keyframes _statusPing {
0% {
transform: scale(.8);
opacity: .8;
}
100% {
transform: scale(1.8);
opacity: 0;
}
}
.nuda-footer-status__meta {
font-variant-numeric: tabular-nums;
font-family: ui-monospace,SFMono-Regular,Menlo,monospace;
font-size: 11px;
}
@media (prefers-reduced-motion:reduce) {
.nuda-footer-status__dot::after {
animation: none;
}
}
How to use Status Footer
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.