with one click
pagination
Generate pagination with page numbers, prev/next, and active state.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Generate pagination with page numbers, prev/next, and active state.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | pagination |
| description | Generate pagination with page numbers, prev/next, and active state. |
.pagination {
display: flex;
align-items: center;
gap: 4px;
}
.page-btn {
min-width: 36px;
height: 36px;
padding: 0 8px;
border: 1px solid rgba(255, 255, 255, 0.06);
background: transparent;
color: rgba(255, 255, 255, 0.5);
font-size: 13px;
border-radius: 8px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.15s ease;
}
.page-btn:hover {
background: rgba(255, 255, 255, 0.04);
color: rgba(255, 255, 255, 0.8);
border-color: rgba(255, 255, 255, 0.1);
}
.page-btn.active {
background: var(--accent);
color: white;
border-color: var(--accent);
}
.page-btn:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.page-ellipsis {
color: rgba(255, 255, 255, 0.3);
padding: 0 4px;
}
Rules:
1 2 3 ... 8 9 10Adapt designs to work across different screen sizes, devices, contexts, or platforms. Ensures consistent experience across varied environments.
Improve layout, spacing, and visual rhythm. Fixes monotonous grids, inconsistent spacing, and weak visual hierarchy to create intentional compositions.
Perform comprehensive audit of interface quality across accessibility, performance, theming, and responsive design. Generates detailed report of issues with severity ratings and recommendations.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
One-time setup that gathers design context for your project and saves it to your AI config file. Run once to establish persistent design guidelines.