diff options
author | Siri Reiter <siri@jones.dk> | 2017-04-10 09:25:07 +0200 |
---|---|---|
committer | Siri Reiter <siri@jones.dk> | 2017-04-10 09:25:07 +0200 |
commit | 82b5cd5fc19faf2cccabc12d43057a899b796e49 (patch) | |
tree | 09070f76b80643ec0d7dfeedfb65b59aeb14d839 /front.scss |
Diffstat (limited to 'front.scss')
-rw-r--r-- | front.scss | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/front.scss b/front.scss new file mode 100644 index 0000000..dede5f2 --- /dev/null +++ b/front.scss @@ -0,0 +1,79 @@ +@import 'h5bp/helpers'; +@import 'compass/css3'; +@import "partials/base"; + +#content { + width: 96%; + max-width: none; +} + +.inlinepage { + position: relative; +//set to make inline header position work + border: 0; + padding: 0; + margin: 0 0 1em 0; + background-color: transparent; + height: 15em; + overflow: hidden; +} + +//set to annull style.css +.inlinecontent { + margin-top: 0; +} + +.inlineheader { + display: block; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + a { + font-weight: normal; + color: white; + background-color: #6699cc; + display: block; + padding: 0.5em; + opacity: 0.8; + } +} + +.inlinecontent p { + margin-bottom: 0; + margin-top: 0; +} + +.inlinefooter, +.inlineheader .author, +.sidebar, +.farbar { + @include h5bp-hidden; +} + +//Responsive design +@media screen and (max-width: 480px) { + #content { + width: 100%; + margin: 0; + padding: 0; + } + .columns { + @include column-count(1); + } + .inlinepage { + margin: 0; + } +} + +@media screen and (min-width: 480px) and (max-width: 700px) { + .columns { + @include column-count(2); + } +} + +@media screen and (min-width: 701px) { + .columns { + @include column-count(3); + } +} |