dragoon0x/everything-design-taste

responsive-craft

Content-driven breakpoints, fluid typography, responsive patterns beyond just "stack on mobile," and designing for real device diversity.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill responsive-craft

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Repository health

Stars 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,343 B
  • docs SUMMARY.md 161 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Responsive Craft

Content-First Breakpoints

Don't design for iPhone 14 Pro and MacBook Pro. Design for the content.

Process

  1. Start with the narrowest viewport (320px)
  2. Slowly widen the browser
  3. When the layout starts looking bad, THAT is your breakpoint
  4. Name breakpoints by behavior, not device: --layout-single, --layout-sidebar, --layout-full

Fluid Typography

clamp() Formula

/* Minimum size, preferred size (viewport-relative), maximum size */
font-size: clamp(1rem, 0.5rem + 2vw, 2rem);

/* Practical scale */
--text-body: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
--text-h1: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
--text-h2: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);

Fluid Spacing

Same principle applies to spacing:

--space-section: clamp(3rem, 2rem + 5vw, 8rem);
--space-container: clamp(1rem, 0.5rem + 3vw, 4rem);

Beyond Stack-on-Mobile

Navigation

  • Desktop: horizontal nav bar
  • Tablet: priority+ pattern (most important items visible, rest in overflow)
  • Mobile: bottom tab bar for primary actions, hamburger for secondary

Tables

  • Desktop: full table
  • Tablet: horizontal scroll with fixed first column
  • Mobile: card-based layout with key-value pairs

Forms

  • Desktop: multi-column where logical
  • Mobile: always single column, larger touch targets, sticky submit button

Images

  • Art direction: different crops for different viewports (not just scale)
  • Use <picture> with srcset for art direction
  • Lazy load below-fold images

Touch Considerations

  • Minimum touch target: 44x44px (Apple) / 48x48px (Material)
  • Spacing between targets: minimum 8px
  • Thumb zone: primary actions in bottom 60% of screen on mobile
  • Swipe gestures: provide button alternatives (not everyone discovers gestures)

Performance as Design

  • Mobile users are often on slower connections
  • Critical CSS inline, rest deferred
  • Images: WebP/AVIF with fallbacks
  • Skeleton screens instead of loading spinners
  • Perceived performance matters more than actual performance