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

UX & Responsive Design

Clarissa Peterson
September 13, 2014

UX & Responsive Design

Although responsive web design has only been around for a few years, it's grown up a lot since first we started talking about fluid grids and media queries. Now, we look to responsive design with the goal of providing a good experience for every user on every device. From the DC Web Women Code(Her) Conference, 9/13/14.

Clarissa Peterson

September 13, 2014
Tweet

More Decks by Clarissa Peterson

Other Decks in Design

Transcript

  1. Being a Web designer & not considering speed/performance is like

    being a print designer & not considering how your colors will print. - Luke Wroblewski @lukew
  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; } }