2017-09-26 16:05:00 +00:00
|
|
|
$footer-height: 60px;
|
|
|
|
|
|
|
|
.background-cover {
|
|
|
|
background: url(/assets/img/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;
|
|
|
|
}
|
2017-10-09 22:29:31 +00:00
|
|
|
|
|
|
|
textarea.post-content {
|
|
|
|
min-height: 80vh;
|
|
|
|
font-family: monospace;
|
|
|
|
}
|