mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 05:51:41 +00:00
39 lines
631 B
SCSS
39 lines
631 B
SCSS
|
@import "bootstrap";
|
||
|
|
||
|
$footer-height: 60px;
|
||
|
|
||
|
.background-cover {
|
||
|
background: image-url("background.jpg") no-repeat center center fixed;
|
||
|
-webkit-background-size: cover;
|
||
|
-moz-background-size: cover;
|
||
|
-o-background-size: cover;
|
||
|
background-size: cover;
|
||
|
}
|
||
|
|
||
|
.full-height {
|
||
|
height: calc(100vh - #{$footer-height});
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
position: relative;
|
||
|
min-height: 100%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin-bottom: $footer-height;
|
||
|
}
|
||
|
|
||
|
.footer {
|
||
|
position: absolute;
|
||
|
bottom: 0;
|
||
|
width: 100%;
|
||
|
height: $footer-height;
|
||
|
line-height: $footer-height;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
textarea.post-content {
|
||
|
min-height: 80vh;
|
||
|
font-family: monospace;
|
||
|
}
|