Layout Designer
Expert page layout and grid system design
What this skill does
# Layout Designer A layout expert that creates beautiful, functional page compositions using grid systems, spacing, and visual hierarchy principles. This skill combines design theory, responsive design patterns, and modern CSS capabilities to build layouts that work across all devices and content types. Whether you need a landing page hero, a dashboard interface, or an editorial layout, this skill provides structured approaches to composition that balance aesthetics with usability. ## Core Workflows ### Workflow 1: Landing Page Layout 1. Define page sections: - Hero (above fold) - Features/Benefits - Social proof - Pricing/CTA - FAQ/Footer 2. Design each section: - Choose layout pattern - Define grid structure - Plan spacing and rhythm - Set visual hierarchy 3. Create responsive breakpoints: - Mobile: Single column, stacked - Tablet: 2-column hybrid - Desktop: Full multi-column 4. Specify component placement and sizing 5. Generate HTML/CSS structure ### Workflow 2: Dashboard/App Layout 1. Map information architecture: - Navigation (sidebar, top bar, tabs) - Primary content area - Secondary panels (filters, details) - Status/notification areas 2. Choose layout system: - Sidebar + content - Holy grail (header, 2 sidebars, footer) - Split panel - Masonry/card grid 3. Define grid and spacing: - Base unit (4px, 8px) - Column structure - Gutter widths - Container max-widths 4. Plan responsive behavior: - Mobile: Collapsed nav, stacked panels - Tablet: Partial collapse - Desktop: Full layout 5. Provide Tailwind/CSS Grid code ### Workflow 3: Editorial/Content Layout 1. Understand content: - Text-heavy vs. image-heavy - Reading length - Media types (images, videos, quotes, code) 2. Design reading experience: - Optimal line length (60-75 chars) - Generous whitespace - Clear hierarchy - Strategic media placement 3. Choose composition: - Single column (blog post) - Multi-column (magazine) - Asymmetric (editorial) - Modular grid (Pinterest-style) 4. Design special elements: - Pull quotes - Image galleries - Sidebars/callouts - Author bios 5. Ensure readability across devices ### Workflow 4: Grid System Creation 1. Define requirements: - Content types - Flexibility needed - Breakpoint strategy 2. Create grid specification: - Number of columns (12, 16, 24) - Gutter width - Margin/padding system - Container sizes 3. Build spacing scale: - Base unit (4px or 8px) - Scale progression (0.5, 1, 2, 3, 4, 6, 8, 12, 16, 24, 32) 4. Document layout patterns: - Common column combinations - Nested grid usage - Breakout/bleed patterns 5. Generate framework config ## Quick Reference | Action | Command/Trigger | |--------|-----------------| | Landing page layout | "Design a landing page for [product]" | | Dashboard layout | "Create dashboard layout for [use case]" | | Blog/article layout | "Design a blog post layout" | | Grid system | "Build a grid system for [project]" | | Fix layout | "Improve the layout of [page/section]" | | Responsive strategy | "Make this layout responsive" | ## Layout Patterns Library ### Hero Sections **Full-Width Hero** - 100vw width, background image/video - Centered content, max 600px wide - Prominent H1 + subtitle + CTA - Best for: SaaS, apps, bold statements **Split Hero** - 50/50 image and content - Image on left or right - Content: H1, description, form/CTA - Best for: Product launches, conversions **Asymmetric Hero** - 60/40 or 70/30 split - Creates visual interest - Diagonal or overlapping elements - Best for: Creative, agency, portfolio ### Content Sections **Centered Stack** - Max-width container (prose, lg, xl) - Centered content - Ample vertical spacing - Best for: Text content, forms **Card Grid** - 2-4 columns - Equal height cards - Hover states, shadows - Best for: Features, products, blog grid **Alternating Rows** - Image-text, text-image pattern - Breaks monotony - Tells visual story - Best for: Feature showcases, case studies **Bento Grid** - Irregular card sizes - Masonry or CSS Grid - Visual interest - Best for: Portfolios, galleries ### App Layouts **Sidebar Navigation** ``` +-----+----------------+ | Nav | Content | | | | | | | +-----+----------------+ ``` **Top Navigation** ``` +---------------------+ | Nav | +---------------------+ | Content | | | +---------------------+ ``` **Holy Grail** ``` +---------------------+ | Header | +-----+--------+------+ | L | Main | R | | e |Content | i | | f | | g | | t | | h | | | | t | +-----+--------+------+ | Footer | +---------------------+ ``` ## Design Principles **Visual Hierarchy** - Most important element = largest, highest contrast - Use size, color, weight, position to guide eye - F-pattern for text-heavy, Z-pattern for landing pages **Whitespace** - Not "empty" space—breathing room - Groups related elements - Creates rhythm and flow - Minimum 1.5x spacing between sections **Alignment** - Everything aligns to something - Strong left edge (for LTR languages) - Use grid to maintain consistency **Proximity** - Related items closer together - Unrelated items farther apart - Creates visual relationships **Balance** - Symmetrical: Formal, stable - Asymmetrical: Dynamic, interesting - Radial: Centered, focused **Contrast** - Size, color, shape, texture - Draws attention - Creates interest - Aids scannability ## Best Practices - **Mobile-first design**: Start small, enhance for larger screens - **Use consistent spacing**: Stick to 4px or 8px base unit system - **Limit column variations**: Too many breakpoints = maintenance nightmare - **Mind the fold**: Key content and CTA above fold, but don't cram - **Create visual anchors**: Strong elements that guide the eye - **Use the grid**: Even when breaking it, know you're breaking it - **Test with real content**: Lorem ipsum hides layout problems - **Consider reading patterns**: F-pattern, Z-pattern, Gutenberg diagram - **Embrace whitespace**: Don't fear empty space—it's powerful - **Maintain aspect ratios**: Images shouldn't distort on different screens - **Accessible focus flow**: Logical tab order, clear focus states - **Print styles**: If applicable, test print layouts ## Grid Systems **12-Column Grid** - Most common - Divisible by 2, 3, 4, 6 - Flexible for most layouts - Used by Bootstrap, Tailwind **16-Column Grid** - More granular control - Good for complex dashboards - Divisible by 2, 4, 8 **Modular Grid** - Rows AND columns - Swiss design heritage - Best for editorial, magazines **Baseline Grid** - Vertical rhythm - Text aligns to baseline - Creates harmony - 8px or 4px common ## Spacing Scale (8px base) ``` 0: 0px (none) 1: 4px (0.25rem) - tight 2: 8px (0.5rem) - base 3: 12px (0.75rem) 4: 16px (1rem) - comfortable 5: 20px (1.25rem) 6: 24px (1.5rem) - loose 8: 32px (2rem) - section spacing 10: 40px (2.5rem) 12: 48px (3rem) 16: 64px (4rem) - hero spacing 20: 80px (5rem) 24: 96px (6rem) 32: 128px (8rem) - dramatic spacing ``` ## Responsive Breakpoints **Common breakpoints:** - xs: 0px (base mobile) - sm: 640px (large mobile) - md: 768px (tablet) - lg: 1024px (small desktop) - xl: 1280px (desktop) - 2xl: 1536px (large desktop) **Content-first breakpoints:** Add breakpoints where YOUR content breaks, not arbitrary device sizes. ## Deliverables Format ``` LAYOUT SPECIFICATION Project: [Name] Page: [Landing / Dashboard / Article] STRUCTURE [ASCII diagram of layout] GRID SYSTEM Columns: 12 Gutter: 24px (1.5rem) Margin: 16px mobile, 24px tablet, 40px desktop Max-width: 1280px (80rem) SECTIONS 1. Hero - Height: 100vh on desktop, auto on mobile - Grid: Full-width background, centered content - Content max
Related in design
ios-hig-design-guide
IncludedBuild, update, and apply iOS design specifications using Apple Human Interface Guidelines (HIG) source data. Use when a task asks for iOS UI/UX rules, Apple design standards, component behavior, accessibility constraints, interaction patterns, or feature-level design-spec writing grounded in official HIG pages.
macos-design
IncludedDesign and build native-feeling macOS application UIs. Use this skill whenever the user asks to create a desktop app, macOS app, Mac-style interface, Apple-style UI, system utility, or anything that should look and feel like a native Mac application. Also trigger when users mention "native feel", "desktop app design", "Apple design patterns", "sidebar layout", "traffic lights", or want to build tools/utilities that feel like they belong on macOS. This skill covers layout, composition, interaction patterns, animations, light/dark mode, and all the subtle details that make an app feel like Apple built it.
ui-design-patterns
IncludedCommon interface patterns, navigation patterns, form patterns, data display patterns, feedback patterns, and accessibility considerations
figma-design
IncludedFigma workflows, components, auto layout, constraints, prototyping, design systems, and plugin development based on Figma Plugin API documentation
ux-principles
IncludedUser research, usability heuristics, user psychology, accessibility, inclusive design, user testing, and UX metrics
wireframing
IncludedLow/high fidelity wireframes, user flows, information architecture, prototyping techniques, and design iteration processes