con un clic
accordion
Generate expandable accordion sections with smooth height animation.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Generate expandable accordion sections with smooth height animation.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Adapt 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.
| name | accordion |
| description | Generate expandable accordion sections with smooth height animation. |
.accordion {
display: flex;
flex-direction: column;
gap: 2px;
}
.accordion-item {
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 12px;
overflow: hidden;
}
.accordion-trigger {
width: 100%;
padding: 14px 16px;
background: rgba(255, 255, 255, 0.02);
border: none;
color: rgba(255, 255, 255, 0.85);
font-size: 14px;
font-weight: 500;
text-align: left;
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
transition: background 0.15s ease;
}
.accordion-trigger:hover {
background: rgba(255, 255, 255, 0.04);
}
.accordion-icon {
width: 20px;
height: 20px;
transition: transform 0.2s ease;
}
.accordion-item.open .accordion-icon {
transform: rotate(180deg);
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.accordion-item.open .accordion-content {
max-height: 500px;
}
.accordion-body {
padding: 0 16px 14px;
color: rgba(255, 255, 255, 0.6);
font-size: 13px;
line-height: 1.6;
}
Rules: