diff options
author | Siri Reiter <siri@jones.dk> | 2016-02-12 11:23:00 +0100 |
---|---|---|
committer | Siri Reiter <siri@jones.dk> | 2016-02-12 11:23:00 +0100 |
commit | ac807eaa5c25181d47fa0334ab53955544f6dab3 (patch) | |
tree | 4b1d24fe5ad29c28293f3f641ff7e99cf689892e /test.scss | |
parent | 0bf1c5c5fd715411d0bc29d8e05452f5975989f1 (diff) |
Fix margin vertical 1em.
Diffstat (limited to 'test.scss')
-rw-r--r-- | test.scss | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -10,7 +10,7 @@ .inlinepage { border: 0; padding: 0; - margin: 0 1em; + margin: 1em 0; background-color: none; } @@ -41,7 +41,7 @@ margin-top: 0; } //Responsive design -@media screen and (max-width: 40em) { +@media screen and (max-width: 480px) { #content { width: 100%; margin: 0; @@ -54,13 +54,13 @@ margin-top: 0; } } -@media screen and (min-width: 41em) and (max-width: 70em) { +@media screen and (min-width: 480px) and (max-width: 700px) { .columns { @include column-count(2); } } -@media only screen and (min-width: 71em) { +@media screen and (min-width: 701px) { .columns { @include column-count(3); } |