vertical_3c/assets/stylesheets/template/base/_go_back_top.scss

26 lines
424 B
SCSS

@charset "utf-8";
@import "variables";
.go-back-top {
background:$theme-color-third;
text-align: center;
padding: 0.625em 0.75em;
position: fixed;
bottom: 0.9375em;
right: 0.9375em;
cursor: pointer;
display: none;
color: $theme-white;
font-size: 0.750em;
border-radius: 0.125em;
z-index: 1050;
opacity: .9;
padding: 1em;
&:hover {
transition: background 0.4s ease;
opacity: 1;
}
}