diff options
Diffstat (limited to 'design/sass')
-rw-r--r-- | design/sass/_homepage.scss | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/design/sass/_homepage.scss b/design/sass/_homepage.scss index 0e30d1c..423b349 100644 --- a/design/sass/_homepage.scss +++ b/design/sass/_homepage.scss @@ -44,9 +44,47 @@ } .homepage--bright { + article { + margin-top: 0; + margin-bottom: 20px; + width: 100%; + } + @include breakpoint(alpha) { + max-width: 100%; + margin-left: 0; + article { + float: left; + width: 47%; + margin-left: 1em; + } + } @include breakpoint(gamma) { float: left; width: 250px; + margin-top: 0; + article { + float: none; + width: 100%; + margin-left: 0; + } + } + @include breakpoint(delta) { + width: 340px; + } + .post--image { + margin-left: 0 !important; + margin-bottom: .5em; + max-height: 130px; + overflow: hidden; + img { + max-width: 100%; + display: block; + /* just in case, to force correct aspect ratio */ + height: auto !important; + width: auto\9; /* ie8+9 */ + /* lt ie8 */ + -ms-interpolation-mode: bicubic; + } } } .homepage--next { |