Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Responsive Design in the Real World

Matt D. Smith
March 30, 2015

Responsive Design in the Real World

Making responsive websites is hard. Throw a bunch of opinionated people in the mix and it can feel nearly impossible. Let’s dig into what it takes to handle the pixels and the people really well. From beginning to end, we’ll walk through a solid, designer-focused process to make your next project a success.

Matt D. Smith

March 30, 2015
Tweet

Other Decks in Design

Transcript

  1. “Everything is so interconnected that nobody has a clear domain

    of work any longer—the walls are gone, so we’re left to learn how to collaborate in the spaces where things connect.” -Frank Chimero http://frankchimero.com/talks/the-webs-grain/transcript/ photo by Steve Mynett http://mds.io/a45A
  2. Button <a href=“#”>Button</a> a { color: white; font-family: sans-serif; text-decoration:

    none; padding: 1em 2em; background: #3BA; border-radius: 3px; } HTML CSS 8 lines of CSS Code snippet: http://codepen.io/mds/pen/RNvPoV
  3. Button <div class=“skewed-container"> <a class="skewed" href=“#”>Button</a> </div> .skewed-container { margin-top:

    100px; -webkit-transform: skewX(18deg); -moz-transform: skewX(18deg); -ms-transform: skewX(18deg); -o-transform: skewX(18deg); transform: skewX(18deg); background: #3AA; max-width: 7em; } a.skewed { -webkit-transform: skewX(-18deg); -moz-transform: skewX(-18deg); -ms-transform: skewX(-18deg); -o-transform: skewX(-18deg); transform: skewX(-18deg); color: white; font-family: sans-serif; text-decoration: none; display: block; padding: 1em 2em; } HTML CSS 24 lines of CSS Code snippet: http://codepen.io/mds/pen/RNvPoV
  4. ???

  5. Create a structure and flow based on the content. Embrace

    mobile-first. Think about multi-device design early and often UX
  6. Explore & define throughout the entire process Embrace component thinking

    Don’t get too attached to any particular process UI