responsive-web-design

Installation
SKILL.md

Responsive Web Design

Build adaptive interfaces using modern CSS techniques for all screen sizes.

Mobile-First Media Queries

/* Base: Mobile (320px+) */
.container {
  padding: 1rem;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .container {
    padding: 2rem;
    max-width: 640px;
    margin: 0 auto;
  }
Related skills

More from secondsky/claude-skills

Installs
239
GitHub Stars
143
First Seen
Jan 22, 2026