diff options
author | Siri Reiter <siri@jones.dk> | 2013-06-30 13:06:37 +0200 |
---|---|---|
committer | Siri Reiter <siri@jones.dk> | 2013-06-30 13:06:56 +0200 |
commit | abe51ea7c1233609a902aa31345a39ada5c041fa (patch) | |
tree | 36f93eb78efee890ea8797be78c5af4d3f509c1b /local.scss | |
parent | c8f0854ee0bc4ef2552b475e6b870413c6b68639 (diff) |
Limit large left margin to wide viewports only (Initial mobile first change).
Diffstat (limited to 'local.scss')
-rw-r--r-- | local.scss | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -102,7 +102,10 @@ DIV.pagecloud { DIV#wrapper, DIV#pagebody { float: left; - margin: 1em 0 4.2em 25%; + margin: 1em 0 4.2em 5%; + @media only screen and (min-width: 40em) { + margin-left: 25%; + } } DIV#content { |