Arrow Pager
A copy-paste pagination component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
PaginationHTMLCSSany framework
Copy into your project
HTML
<nav class="nuda-pga">
<button class="nuda-pga__btn">←</button>
<button class="nuda-pga__btn nuda-pga__btn--primary">→</button>
</nav>CSS
.nuda-pga {
display: inline-flex;
gap: .5rem;
}
.nuda-pga__btn {
width: 40px;
height: 40px;
border: 1px solid rgba(255,255,255,.12);
background: #161616;
color: #cfcfcf;
border-radius: 10px;
font-size: 1rem;
cursor: pointer;
transition: all .18s;
}
.nuda-pga__btn:hover {
transform: translateY(-2px);
color: #fafafa;
}
.nuda-pga__btn--primary {
background: #e4ff54;
color: #0a0a0a;
border-color: #e4ff54;
}
How to use Arrow Pager
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.