diff options
author | Siri Reiter <siri@jones.dk> | 2016-02-12 08:51:58 +0100 |
---|---|---|
committer | Siri Reiter <siri@jones.dk> | 2016-02-12 08:51:58 +0100 |
commit | 0bf1c5c5fd715411d0bc29d8e05452f5975989f1 (patch) | |
tree | b809bbb239681105291fc4406c85688fa4d3e1bc /test.scss | |
parent | fa23263f391be3da4262081484fca0f6187bed38 (diff) |
Inlinepage: Remove test background colors. Remove margins. Set basic styling for inline header block. Remove max-width.
Diffstat (limited to 'test.scss')
-rw-r--r-- | test.scss | 33 |
1 files changed, 21 insertions, 12 deletions
@@ -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); } |