├── .gitignore ├── code ├── Base │ ├── index.html │ └── layout.css ├── Chapter2 │ ├── demo_create │ │ ├── index.html │ │ └── layout.css │ ├── demo_viewport │ │ ├── index.html │ │ └── layout.css │ ├── media_features │ │ ├── index.html │ │ └── layout.css │ ├── media_query │ │ ├── index.html │ │ └── layout.css │ └── start │ │ ├── index.html │ │ └── layout.css ├── Chapter3 │ ├── bootstrap │ │ ├── index.html │ │ └── layout.css │ ├── chapter_start │ │ ├── index.html │ │ └── layout.css │ ├── flexbox │ │ ├── index.html │ │ └── layout.css │ ├── foundation │ │ ├── foundation │ │ │ ├── css │ │ │ │ ├── app.css │ │ │ │ ├── foundation.css │ │ │ │ └── foundation.min.css │ │ │ └── js │ │ │ │ ├── app.js │ │ │ │ └── vendor │ │ │ │ ├── foundation.js │ │ │ │ ├── foundation.min.js │ │ │ │ ├── jquery.js │ │ │ │ └── what-input.js │ │ ├── index.html │ │ └── layout.css │ ├── grid │ │ ├── index.html │ │ └── layout.css │ └── vanilla_final │ │ ├── index.html │ │ └── layout.css ├── Chapter4 │ ├── chapter_start │ │ ├── index.html │ │ └── layout.css │ ├── demo_refactor_finish │ │ ├── index.html │ │ └── layout.css │ ├── em cascade │ │ ├── index.html │ │ └── layout.css │ ├── em sizing │ │ ├── index.html │ │ └── layout.css │ ├── percentage sizing │ │ ├── index.html │ │ └── layout.css │ ├── rem sizing │ │ ├── index.html │ │ └── layout.css │ └── vw_vh sizing │ │ ├── index.html │ │ └── layout.css ├── chapter5 │ ├── background_poster │ │ ├── index.html │ │ └── layout.css │ ├── chapter_start │ │ ├── index.html │ │ └── layout.css │ ├── clickable_image │ │ ├── index.html │ │ └── layout.css │ ├── image_width │ │ ├── index.html │ │ └── layout.css │ ├── images │ │ ├── show1-large.jpg │ │ ├── show1-medium.jpg │ │ ├── show1-small.jpg │ │ ├── show1.jpg │ │ ├── show2-large.jpg │ │ ├── show2-medium.jpg │ │ ├── show2-small.jpg │ │ ├── show2.jpg │ │ ├── show3-large.jpg │ │ ├── show3-medium.jpg │ │ ├── show3-small.jpg │ │ ├── show3.jpg │ │ ├── show4-large.jpg │ │ ├── show4-medium.jpg │ │ ├── show4-small.jpg │ │ ├── show4.jpg │ │ ├── show5-large.jpg │ │ ├── show5-medium.jpg │ │ ├── show5-small.jpg │ │ └── show5.jpg │ ├── picture_tag │ │ ├── index.html │ │ └── layout.css │ ├── restructure │ │ ├── index.html │ │ └── layout.css │ ├── srcset │ │ ├── index.html │ │ └── layout.css │ └── video_tag │ │ ├── index.html │ │ └── layout.css ├── chapter6 │ ├── battery │ │ ├── index.html │ │ ├── index.js │ │ └── layout.css │ ├── battery_mobile_first │ │ ├── index.html │ │ ├── index.js │ │ └── layout.css │ ├── cookies │ │ ├── index.html │ │ ├── index.js │ │ └── layout.css │ ├── geolocation │ │ ├── index.html │ │ ├── index.js │ │ └── layout.css │ ├── images │ │ ├── show1-large.jpg │ │ ├── show1-medium.jpg │ │ ├── show1-small.jpg │ │ ├── show1.jpg │ │ ├── show2-large.jpg │ │ ├── show2-medium.jpg │ │ ├── show2-small.jpg │ │ ├── show2.jpg │ │ ├── show3-large.jpg │ │ ├── show3-medium.jpg │ │ ├── show3-small.jpg │ │ ├── show3.jpg │ │ ├── show4-large.jpg │ │ ├── show4-medium.jpg │ │ ├── show4-small.jpg │ │ ├── show4.jpg │ │ ├── show5-large.jpg │ │ ├── show5-medium.jpg │ │ ├── show5-small.jpg │ │ └── show5.jpg │ ├── luminosity │ │ ├── index.html │ │ ├── index.js │ │ └── layout.css │ ├── orientation │ │ ├── index.html │ │ └── layout.css │ ├── time │ │ ├── index.html │ │ ├── index.js │ │ └── layout.css │ └── vibration │ │ ├── index.html │ │ ├── index.js │ │ └── layout.css └── readme.txt └── videos ├── show1.mp4 ├── show1.ogg ├── show2.mp4 ├── show2.ogg ├── show3.mp4 ├── show3.ogg ├── show4.mp4 ├── show4.ogg ├── show5.mp4 └── show5.ogg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/.gitignore -------------------------------------------------------------------------------- /code/Base/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Base/index.html -------------------------------------------------------------------------------- /code/Base/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Base/layout.css -------------------------------------------------------------------------------- /code/Chapter2/demo_create/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter2/demo_create/index.html -------------------------------------------------------------------------------- /code/Chapter2/demo_create/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter2/demo_create/layout.css -------------------------------------------------------------------------------- /code/Chapter2/demo_viewport/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter2/demo_viewport/index.html -------------------------------------------------------------------------------- /code/Chapter2/demo_viewport/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter2/demo_viewport/layout.css -------------------------------------------------------------------------------- /code/Chapter2/media_features/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter2/media_features/index.html -------------------------------------------------------------------------------- /code/Chapter2/media_features/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter2/media_features/layout.css -------------------------------------------------------------------------------- /code/Chapter2/media_query/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter2/media_query/index.html -------------------------------------------------------------------------------- /code/Chapter2/media_query/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter2/media_query/layout.css -------------------------------------------------------------------------------- /code/Chapter2/start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter2/start/index.html -------------------------------------------------------------------------------- /code/Chapter2/start/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter2/start/layout.css -------------------------------------------------------------------------------- /code/Chapter3/bootstrap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/bootstrap/index.html -------------------------------------------------------------------------------- /code/Chapter3/bootstrap/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/bootstrap/layout.css -------------------------------------------------------------------------------- /code/Chapter3/chapter_start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/chapter_start/index.html -------------------------------------------------------------------------------- /code/Chapter3/chapter_start/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/chapter_start/layout.css -------------------------------------------------------------------------------- /code/Chapter3/flexbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/flexbox/index.html -------------------------------------------------------------------------------- /code/Chapter3/flexbox/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/flexbox/layout.css -------------------------------------------------------------------------------- /code/Chapter3/foundation/foundation/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Chapter3/foundation/foundation/css/foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/foundation/foundation/css/foundation.css -------------------------------------------------------------------------------- /code/Chapter3/foundation/foundation/css/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/foundation/foundation/css/foundation.min.css -------------------------------------------------------------------------------- /code/Chapter3/foundation/foundation/js/app.js: -------------------------------------------------------------------------------- 1 | $(document).foundation() 2 | -------------------------------------------------------------------------------- /code/Chapter3/foundation/foundation/js/vendor/foundation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/foundation/foundation/js/vendor/foundation.js -------------------------------------------------------------------------------- /code/Chapter3/foundation/foundation/js/vendor/foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/foundation/foundation/js/vendor/foundation.min.js -------------------------------------------------------------------------------- /code/Chapter3/foundation/foundation/js/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/foundation/foundation/js/vendor/jquery.js -------------------------------------------------------------------------------- /code/Chapter3/foundation/foundation/js/vendor/what-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/foundation/foundation/js/vendor/what-input.js -------------------------------------------------------------------------------- /code/Chapter3/foundation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/foundation/index.html -------------------------------------------------------------------------------- /code/Chapter3/foundation/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/foundation/layout.css -------------------------------------------------------------------------------- /code/Chapter3/grid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/grid/index.html -------------------------------------------------------------------------------- /code/Chapter3/grid/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/grid/layout.css -------------------------------------------------------------------------------- /code/Chapter3/vanilla_final/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/vanilla_final/index.html -------------------------------------------------------------------------------- /code/Chapter3/vanilla_final/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter3/vanilla_final/layout.css -------------------------------------------------------------------------------- /code/Chapter4/chapter_start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/chapter_start/index.html -------------------------------------------------------------------------------- /code/Chapter4/chapter_start/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/chapter_start/layout.css -------------------------------------------------------------------------------- /code/Chapter4/demo_refactor_finish/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/demo_refactor_finish/index.html -------------------------------------------------------------------------------- /code/Chapter4/demo_refactor_finish/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/demo_refactor_finish/layout.css -------------------------------------------------------------------------------- /code/Chapter4/em cascade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/em cascade/index.html -------------------------------------------------------------------------------- /code/Chapter4/em cascade/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/em cascade/layout.css -------------------------------------------------------------------------------- /code/Chapter4/em sizing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/em sizing/index.html -------------------------------------------------------------------------------- /code/Chapter4/em sizing/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/em sizing/layout.css -------------------------------------------------------------------------------- /code/Chapter4/percentage sizing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/percentage sizing/index.html -------------------------------------------------------------------------------- /code/Chapter4/percentage sizing/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/percentage sizing/layout.css -------------------------------------------------------------------------------- /code/Chapter4/rem sizing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/rem sizing/index.html -------------------------------------------------------------------------------- /code/Chapter4/rem sizing/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/rem sizing/layout.css -------------------------------------------------------------------------------- /code/Chapter4/vw_vh sizing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/vw_vh sizing/index.html -------------------------------------------------------------------------------- /code/Chapter4/vw_vh sizing/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/Chapter4/vw_vh sizing/layout.css -------------------------------------------------------------------------------- /code/chapter5/background_poster/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/background_poster/index.html -------------------------------------------------------------------------------- /code/chapter5/background_poster/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/background_poster/layout.css -------------------------------------------------------------------------------- /code/chapter5/chapter_start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/chapter_start/index.html -------------------------------------------------------------------------------- /code/chapter5/chapter_start/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/chapter_start/layout.css -------------------------------------------------------------------------------- /code/chapter5/clickable_image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/clickable_image/index.html -------------------------------------------------------------------------------- /code/chapter5/clickable_image/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/clickable_image/layout.css -------------------------------------------------------------------------------- /code/chapter5/image_width/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/image_width/index.html -------------------------------------------------------------------------------- /code/chapter5/image_width/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/image_width/layout.css -------------------------------------------------------------------------------- /code/chapter5/images/show1-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show1-large.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show1-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show1-medium.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show1-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show1-small.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show1.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show2-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show2-large.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show2-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show2-medium.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show2-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show2-small.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show2.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show3-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show3-large.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show3-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show3-medium.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show3-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show3-small.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show3.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show4-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show4-large.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show4-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show4-medium.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show4-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show4-small.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show4.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show5-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show5-large.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show5-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show5-medium.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show5-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show5-small.jpg -------------------------------------------------------------------------------- /code/chapter5/images/show5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/images/show5.jpg -------------------------------------------------------------------------------- /code/chapter5/picture_tag/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/picture_tag/index.html -------------------------------------------------------------------------------- /code/chapter5/picture_tag/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/picture_tag/layout.css -------------------------------------------------------------------------------- /code/chapter5/restructure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/restructure/index.html -------------------------------------------------------------------------------- /code/chapter5/restructure/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/restructure/layout.css -------------------------------------------------------------------------------- /code/chapter5/srcset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/srcset/index.html -------------------------------------------------------------------------------- /code/chapter5/srcset/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/srcset/layout.css -------------------------------------------------------------------------------- /code/chapter5/video_tag/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/video_tag/index.html -------------------------------------------------------------------------------- /code/chapter5/video_tag/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter5/video_tag/layout.css -------------------------------------------------------------------------------- /code/chapter6/battery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/battery/index.html -------------------------------------------------------------------------------- /code/chapter6/battery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/battery/index.js -------------------------------------------------------------------------------- /code/chapter6/battery/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/battery/layout.css -------------------------------------------------------------------------------- /code/chapter6/battery_mobile_first/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/battery_mobile_first/index.html -------------------------------------------------------------------------------- /code/chapter6/battery_mobile_first/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/battery_mobile_first/index.js -------------------------------------------------------------------------------- /code/chapter6/battery_mobile_first/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/battery_mobile_first/layout.css -------------------------------------------------------------------------------- /code/chapter6/cookies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/cookies/index.html -------------------------------------------------------------------------------- /code/chapter6/cookies/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/cookies/index.js -------------------------------------------------------------------------------- /code/chapter6/cookies/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/cookies/layout.css -------------------------------------------------------------------------------- /code/chapter6/geolocation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/geolocation/index.html -------------------------------------------------------------------------------- /code/chapter6/geolocation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/geolocation/index.js -------------------------------------------------------------------------------- /code/chapter6/geolocation/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/geolocation/layout.css -------------------------------------------------------------------------------- /code/chapter6/images/show1-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show1-large.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show1-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show1-medium.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show1-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show1-small.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show1.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show2-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show2-large.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show2-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show2-medium.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show2-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show2-small.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show2.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show3-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show3-large.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show3-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show3-medium.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show3-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show3-small.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show3.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show4-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show4-large.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show4-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show4-medium.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show4-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show4-small.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show4.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show5-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show5-large.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show5-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show5-medium.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show5-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show5-small.jpg -------------------------------------------------------------------------------- /code/chapter6/images/show5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/images/show5.jpg -------------------------------------------------------------------------------- /code/chapter6/luminosity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/luminosity/index.html -------------------------------------------------------------------------------- /code/chapter6/luminosity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/luminosity/index.js -------------------------------------------------------------------------------- /code/chapter6/luminosity/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/luminosity/layout.css -------------------------------------------------------------------------------- /code/chapter6/orientation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/orientation/index.html -------------------------------------------------------------------------------- /code/chapter6/orientation/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/orientation/layout.css -------------------------------------------------------------------------------- /code/chapter6/time/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/time/index.html -------------------------------------------------------------------------------- /code/chapter6/time/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/time/index.js -------------------------------------------------------------------------------- /code/chapter6/time/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/time/layout.css -------------------------------------------------------------------------------- /code/chapter6/vibration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/vibration/index.html -------------------------------------------------------------------------------- /code/chapter6/vibration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/vibration/index.js -------------------------------------------------------------------------------- /code/chapter6/vibration/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/chapter6/vibration/layout.css -------------------------------------------------------------------------------- /code/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/code/readme.txt -------------------------------------------------------------------------------- /videos/show1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/videos/show1.mp4 -------------------------------------------------------------------------------- /videos/show1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/videos/show1.ogg -------------------------------------------------------------------------------- /videos/show2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/videos/show2.mp4 -------------------------------------------------------------------------------- /videos/show2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/videos/show2.ogg -------------------------------------------------------------------------------- /videos/show3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/videos/show3.mp4 -------------------------------------------------------------------------------- /videos/show3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/videos/show3.ogg -------------------------------------------------------------------------------- /videos/show4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/videos/show4.mp4 -------------------------------------------------------------------------------- /videos/show4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/videos/show4.ogg -------------------------------------------------------------------------------- /videos/show5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/videos/show5.mp4 -------------------------------------------------------------------------------- /videos/show5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/responsive2/HEAD/videos/show5.ogg --------------------------------------------------------------------------------