45 lines
638 B
SCSS
45 lines
638 B
SCSS
// Global styling for this template
|
|
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
#wrapper {
|
|
display: flex;
|
|
#content-wrapper {
|
|
overflow-x: hidden;
|
|
width: 100%;
|
|
padding-top: 1rem;
|
|
padding-bottom: $sticky-footer-height;
|
|
}
|
|
}
|
|
|
|
// Scroll to top button
|
|
.scroll-to-top {
|
|
position: fixed;
|
|
right: 15px;
|
|
bottom: 15px;
|
|
display: none;
|
|
width: 50px;
|
|
height: 50px;
|
|
text-align: center;
|
|
color: $white;
|
|
background: fade-out($gray-800, .5);
|
|
line-height: 46px;
|
|
&:focus,
|
|
&:hover {
|
|
color: white;
|
|
}
|
|
&:hover {
|
|
background: $gray-800;
|
|
}
|
|
i {
|
|
font-weight: 800;
|
|
}
|
|
}
|