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

28 lines
607 B
SCSS
Executable File

@charset "utf-8";
@import "variables";
.go-back-top {
text-align: center;
padding: 0.625em 0.75em;
position: fixed;
bottom: 0.9375em;
right: 0.9375em;
cursor: pointer;
display: none;
color: transparent;
font-size: 0.750em;
border-radius: 0.125em;
z-index: 1050;
background: url(/assets/coin.png) bottom no-repeat;
background-size: contain;
&:hover {
transform: scale(1.5);
-webkit-transition: .3s ease-out;
-moz-transition: .3s ease-out;
-ms-transition: .3s ease-out;
-o-transition: .3s ease-out;
transition: .3s ease-out;
}
}