parsley/app/assets/stylesheets/application.scss

49 lines
1.2 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.
*
2016-01-14 11:07:15 -06:00
*= require flash_messages
2016-01-18 18:29:25 -06:00
*= require chosen
2016-01-20 12:20:10 -06:00
*= require font_references
2016-01-12 18:43:00 -06:00
*/
@import "bootstrap-sprockets";
2016-01-20 12:38:02 -06:00
@import "journal/_variables";
2016-01-12 18:43:00 -06:00
@import "bootstrap";
2016-01-20 12:38:02 -06:00
@import "journal/_bootswatch";
2016-01-13 17:10:43 -06:00
2016-01-14 15:22:15 -06:00
@import "typeahead-bootstrap";
2016-01-14 11:07:15 -06:00
@import "recipes";
2016-01-13 17:10:43 -06:00
$footer_height: 40px;
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: $footer_height;
2016-01-18 12:58:54 -06:00
background: image_url("old_mathematics.png");
}
#main_container {
background: white;
2016-01-18 15:10:25 -06:00
padding-bottom: 15px;
2016-01-13 17:10:43 -06:00
}
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;
}