summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test.scss33
1 files changed, 21 insertions, 12 deletions
diff --git a/test.scss b/test.scss
index 6a1ed3c..82b744c 100644
--- a/test.scss
+++ b/test.scss
@@ -3,19 +3,34 @@
#content {
width: 96%;
+ max-width: none;
margin: 2%;
}
.inlinepage {
border: 0;
- padding: 1em 5%;
- margin: 0;
+ padding: 0;
+ margin: 0 1em;
background-color: none;
}
+
.inlinepage .header a {
font-weight: normal;
- color: DarkRed;
+ color: white;
+ background-color: lightblue;
+ display: block;
+ padding: 0.5em;
+}
+
+//set to annull style.css
+.inlinecontent {
+margin-top: 0;
+}
+
+.inlinecontent p {
+ margin-bottom: 0;
+ margin-top: 0;
}
.inlinefooter,
@@ -31,27 +46,21 @@
width: 100%;
margin: 0;
}
-.inlinepage {
- background-color: Blue;
-}
.columns {
@include column-count(1);
}
+.inlinepage {
+ margin: 0;
+}
}
@media screen and (min-width: 41em) and (max-width: 70em) {
-.inlinepage {
- background-color: Black;
-}
.columns {
@include column-count(2);
}
}
@media only screen and (min-width: 71em) {
-.inlinepage {
- background-color: Red;
-}
.columns {
@include column-count(3);
}