summaryrefslogtreecommitdiff
path: root/test.scss
diff options
context:
space:
mode:
authorSiri Reiter <siri@jones.dk>2016-02-12 11:23:00 +0100
committerSiri Reiter <siri@jones.dk>2016-02-12 11:23:00 +0100
commitac807eaa5c25181d47fa0334ab53955544f6dab3 (patch)
tree4b1d24fe5ad29c28293f3f641ff7e99cf689892e /test.scss
parent0bf1c5c5fd715411d0bc29d8e05452f5975989f1 (diff)
Fix margin vertical 1em.
Diffstat (limited to 'test.scss')
-rw-r--r--test.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/test.scss b/test.scss
index 82b744c..5b8469c 100644
--- a/test.scss
+++ b/test.scss
@@ -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);
}