Skip to content
This repository has been archived by the owner on Jan 14, 2018. It is now read-only.

Commit

Permalink
Added @-viewport CSS
Browse files Browse the repository at this point in the history
Added @-viewport {
width : device-width; }

Plus all vendor-specific prefixes to all ‘site’ files, LESS, Sass and SCSS.
  • Loading branch information
Andy Clarke committed Sep 5, 2012
1 parent 21c7d12 commit 95887a9
Show file tree
Hide file tree
Showing 16 changed files with 75 additions and 0 deletions.
Binary file added 320andup.esproj/Project.espressostorage
Binary file not shown.
Binary file not shown.
Binary file removed css/.DS_Store
Binary file not shown.
15 changes: 15 additions & 0 deletions less/site.less
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@


// 1. ROOT ============================== // 1. ROOT ==============================


@-webkit-viewport {
width : device-width; }

@-moz-viewport {
width : device-width; }

@-ms-viewport {
width : device-width; }

@-o-viewport {
width : device-width; }

@viewport {
width : device-width; }

html { html {
background : @bodycolor; background : @bodycolor;
font-size : 62.5%; font-size : 62.5%;
Expand Down
Binary file removed sass-compass/.DS_Store
Binary file not shown.
15 changes: 15 additions & 0 deletions sass-compass/_site.sass
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@
// 1. ROOT ============================== // 1. ROOT ==============================
@-webkit-viewport {
width : device-width; }

@-moz-viewport {
width : device-width; }

@-ms-viewport {
width : device-width; }

@-o-viewport {
width : device-width; }

@viewport {
width : device-width; }

html html
background: $bodycolor background: $bodycolor
font-size: 62.5% font-size: 62.5%
Expand Down
Binary file not shown.
Binary file removed sass-compass/upstarts/320andup-modules/.DS_Store
Binary file not shown.
Binary file removed sass-compass/upstarts/320andup-panels/.DS_Store
Binary file not shown.
Binary file removed sass/.DS_Store
Binary file not shown.
15 changes: 15 additions & 0 deletions sass/_site.sass
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@
// 1. ROOT ============================== // 1. ROOT ==============================
@-webkit-viewport {
width : device-width; }

@-moz-viewport {
width : device-width; }

@-ms-viewport {
width : device-width; }

@-o-viewport {
width : device-width; }

@viewport {
width : device-width; }

html html
background: $bodycolor background: $bodycolor
font-size: 62.5% font-size: 62.5%
Expand Down
Binary file removed sass/upstarts/320andup-display-table/.DS_Store
Binary file not shown.
Binary file removed sass/upstarts/320andup-modules/.DS_Store
Binary file not shown.
Binary file removed sass/upstarts/320andup-panels/.DS_Store
Binary file not shown.
15 changes: 15 additions & 0 deletions scss-compass/_site.scss
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@


// 1. ROOT ============================== // 1. ROOT ==============================


@-webkit-viewport {
width : device-width; }

@-moz-viewport {
width : device-width; }

@-ms-viewport {
width : device-width; }

@-o-viewport {
width : device-width; }

@viewport {
width : device-width; }

html { html {
background : $bodycolor; background : $bodycolor;
font-size : 62.5%; font-size : 62.5%;
Expand Down
15 changes: 15 additions & 0 deletions scss/_site.scss
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@


// 1. ROOT ============================== // 1. ROOT ==============================


@-webkit-viewport {
width : device-width; }

@-moz-viewport {
width : device-width; }

@-ms-viewport {
width : device-width; }

@-o-viewport {
width : device-width; }

@viewport {
width : device-width; }

html { html {
background : $bodycolor; background : $bodycolor;
font-size : 62.5%; font-size : 62.5%;
Expand Down

0 comments on commit 95887a9

Please sign in to comment.