npx skills add https://github.com/kylezantos/responsive-craft
dragoon0x/everything-design-taste
responsive-craft
Content-driven breakpoints, fluid typography, responsive patterns beyond just "stack on mobile," and designing for real device diversity.
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.
Use `LayoutBuilder`, `MediaQuery`, or `Expanded/Flexible` to create a layout that adapts to dif…
33.3K installsTest website responsiveness across viewport widths using browser automation. Resizes a single s…
1.6K installsDesign layouts and interactions that adapt across screen sizes and input methods. Use when one …
1.6K installsResponsive design with Container Queries, fluid typography, cqi/cqb units, subgrid, intrinsic l…
1.3K installsAlso in this package
Other skills from dragoon0x/everything-design-taste · top by installs.
npx skills add 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.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,343 B -
docs
SUMMARY.md161 B
History
- First seen on skills.sh
- 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
- Start with the narrowest viewport (320px)
- Slowly widen the browser
- When the layout starts looking bad, THAT is your breakpoint
- 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>withsrcsetfor 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