stoptime-rs/ui/scss/stoptime.scss
Paul van Tilburg 76a981444e Generate CSS assets during build
The main CSS file will import everything from Bootstrap and
Font Awesome and provide a way to override things.
2019-07-26 14:22:01 +02:00

29 lines
456 B
SCSS

// Include all of Bootstrap.
@import "bootstrap/bootstrap";
// Include all of Font Awesome.
@import "fontawesome/fontawesome";
/* StopTime's main CSS (overrides)
*/
// Prepare for the fixed-top navbar.
html {
position: relative;
min-height: 100%;
}
// Add some padding for the fixed-top navbar.
body {
padding-top: 80px;
margin-bottom: 24px;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 24px;
line-height: 24px;
}