diff --git a/static/scss/custom.scss b/static/scss/custom.scss index f0ba62320f6a838d6be50631285a36c88a881ec7..2d68f90dbece444290ec6052bb021c1855455b0a 100644 --- a/static/scss/custom.scss +++ b/static/scss/custom.scss @@ -103,26 +103,26 @@ body.auth .panel-heading .panel-title span.pull-right { box-shadow: 0px 0px 2em $background-filter; //, inset 0px -5px 1em rgba(0, 0, 0, 0.8); } -.homepage-block-content { - position: relative; - height: 100%; -} - -.bottom-align { - position: absolute; - bottom: 0; -} +$homepage-block-min-height: 480px; .homepage-block { margin-top: 0; margin-bottom: 0; - min-height: 480px; // TODO: change - height: 480px; + min-height: $homepage-block-min-height; position: relative; box-shadow: $box-shadow; z-index: 3; } +.homepage-block-content { + min-height: ($homepage-block-min-height - 80px); +} + +/* ??? */ +.homepage-block-footer { + +} + .homepage-block.light { background-color: $background-filter; z-index: 2; @@ -188,4 +188,4 @@ body.auth .panel-heading .panel-title span.pull-right { .btn-group + p { margin-top: 1em; -} \ No newline at end of file +}