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

Designing Responsive Websites

Clarissa Peterson
September 03, 2014

Designing Responsive Websites

Responsive web design allows you to create websites that provide an optimal user experience across devices. In this session, attendees learned why the process for designing a (good) responsive website can be very different than the traditional web design process—and how to change their workflow to create a great responsive site.

Presented in 2015 at McFullStack (McGill University, Montreal). Presented in 2014 at HOW Interactive Design Conference in Washington, DC & HOW Interactive Design Conference in Chicago, IL.

Clarissa Peterson

September 03, 2014
Tweet

More Decks by Clarissa Peterson

Other Decks in Design

Transcript

  1. “It's not like our industry nailed web design before we

    started doing responsive design. It's still a work in progress.” - Dan Willis @uxcrank
  2. @media only screen and (min-width:48em) { article { font-size: 1.1em;

    } article p { line-height: 1.4; margin: 1.4em auto; } }
  3. @media only screen and (min-width:48em) { article { font-size: 1.1em;

    } article p { line-height: 1.4; margin: 1.4em auto; } }
  4. #intro { font-size: 1em; font-family: Helvetica, sans-serif; } @media only

    screen and (min-width:30em) { #intro { font-size: 1.2em; font-family: Populaire, sans-serif; } }