Skip to content

Instantly share code, notes, and snippets.

@boennemann
Created November 2, 2012 16:12
Show Gist options
  • Save boennemann/4002366 to your computer and use it in GitHub Desktop.
Save boennemann/4002366 to your computer and use it in GitHub Desktop.
Infinitly large WebApp Screenshots
@scale: 10;
/* Galaxy
@width: 360px;
@height: 640px;
*/
/* iPhone */
@width: 320px;
@height: 568px;
html {
width: @width * @scale;
height: @height * @scale;
overflow: auto;
}
body {
overflow: auto;
width: @width;
height: @height;
-webkit-transform: scale(@scale);
-webkit-transform-origin: 0 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment