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

Code School: Journey Into Mobile

Jason VanLue
April 30, 2012

Code School: Journey Into Mobile

Slides for the free level of my Journey Into Mobile course for Code School. Play the first level for free

Jason VanLue

April 30, 2012
Tweet

More Decks by Jason VanLue

Other Decks in Design

Transcript

  1. What is the Mobile web? Level 1 "The primary design

    principle underlying the Web's usefulness and growth is universality.” (Tim Berners-Lee)
  2. Level 1 What is the Mobile web? • Must work

    with any form of information • Accessible from any device.
  3. Course Overview In this course, we’ll cover: 2. Adaptive Design

    3. Responsive Design 1. Fluid Layouts Level 1
  4. Level 1 Fluid Layouts It is quite a three pipe

    problem. <a href="#">Please get me a pipe.</a> <h1> </h1>
  5. Fluid Layouts html { font-size: 16px; } body { color:

    #352a25; font-family: Georgia, serif; font-size: 62.5%; /* 1em = 10px */ }
  6. Level 1 target ÷ context = result target font size

    font size of containing element Fluid Layouts
  7. Level 1 target ÷ context = result 30px ÷ 10px

    = 3em <h1> font size default browser font size Fluid Layouts
  8. Level 1 need to convert Fluid Layouts h1 a {

    font-size: 14px; text-transform: uppercase; text-decoration: none; color: #6C564B; }
  9. Level 1 target ÷ context = result 14px ÷ 30px

    = 0.4666667em <h1> font size is the correct context Fluid Layouts
  10. Level 1 Fluid Layouts h1 a { font-size: 0.46666667em; /*

    14px/30px */ text-transform: uppercase; text-decoration: none; color: #6C564B; }
  11. Level 1 target ÷ context = result 14px ÷ 30px

    = 0.4666667em Note: No need to round Fluid Layouts h1 a { font-size: 0.46666667em; /* 14px/30px */ text-transform: uppercase; text-decoration: none; color: #6C564B; }