Skip to content
Snippets Groups Projects
Commit e514d80c authored by Michael Enz's avatar Michael Enz
Browse files

OO-1211

footer margins
parent a93c6ee6
No related branches found
No related tags found
No related merge requests found
......@@ -159,7 +159,8 @@ $o-footer-inner-bg : #f5f5f5 !default;
$o-footer-default-color : #999 !default;
$o-footer-default-link-color : #999 !default;
$o-footer-default-link-hover-color : #000 !default;
$o-footer-position-absolute : true !default;
$o-footer-position-absolute : true !default;
$o-footer-margin-top : $padding-large-vertical !default;
/* Toolbar in course, editor etc */
$o-toolbar-bg-color : $navbar-default-bg !default;
......@@ -262,7 +263,7 @@ $o-button-dirty-border : darken($o-button-dirty-bg , 5%) !default;
$o-login-header-color : $brand-primary !default;
$o-login-form-width : 400px !default;
$o-login-form-align : right !default; /* left, center or right */
$o-login-form-bg-gradient-steps : rgba(255,255,255,.1) 0.2%, rgba(255,255,255,0.8) 60%, rgba(255,255,255,0.1) 100% !default;
$o-login-form-bg-gradient-steps : rgba(255,255,255,0.1) 0.2%, rgba(255,255,255,0.6) 60%, rgba(255,255,255,0.8) 100% !default;
$o-login-form-bg-img : $o-images-path + "learn-bg.jpg" !default; /* image CC by Thomas Leuthard https://www.flickr.com/photos/thomasleuthard/8587724648/ */
$o-login-btn-register-color : $btn-info-color !default;
$o-login-btn-register-bg : $btn-info-bg !default;
......
......@@ -2,6 +2,9 @@
@if $o-footer-position-absolute == true {
position: absolute; bottom: 0;
}
@else {
margin-top: $o-footer-margin-top;
}
width: 100%;
height: $o-footer-height;
overflow: hidden;
......
......@@ -7,6 +7,6 @@ body {
min-height: 100%;
@if $o-footer-position-absolute == true {
margin-bottom: $o-footer-height;
margin-bottom: $o-footer-height + $o-footer-margin-top;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment