parsley/app/assets/stylesheets/application.scss

39 lines
1.0 KiB
SCSS
Raw Normal View History

2016-01-12 18:43:00 -06:00
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any styles
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
* file per style scope.
*
*= require_tree .
*= require_self
*/
@import "bootstrap-sprockets";
2016-01-13 17:10:43 -06:00
@import "spacelab/_variables";
2016-01-12 18:43:00 -06:00
@import "bootstrap";
2016-01-13 17:10:43 -06:00
@import "spacelab/_bootswatch";
$footer_height: 40px;
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: $footer_height;
}
2016-01-12 18:43:00 -06:00
.footer {
position: absolute;
bottom: 0;
width: 100%;
2016-01-13 17:10:43 -06:00
height: $footer_height;
2016-01-12 18:43:00 -06:00
background-color: #f5f5f5;
}