2014-06-29 17:55:58 +00:00
|
|
|
/** Sticky footer: http://getbootstrap.com/examples/sticky-footer/ */
|
|
|
|
html {
|
|
|
|
position: relative;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
/* Margin bottom by footer height */
|
2014-07-02 16:48:14 +00:00
|
|
|
margin-bottom: 50px;
|
2014-06-29 17:55:58 +00:00
|
|
|
}
|
|
|
|
.footer {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
/* Set the fixed height of the footer here */
|
2014-07-02 16:48:14 +00:00
|
|
|
height: 40px;
|
2014-06-29 17:55:58 +00:00
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|