28 lines
502 B
SCSS
Executable File
28 lines
502 B
SCSS
Executable File
@charset "utf-8";
|
|
|
|
@import "variables";
|
|
|
|
.go-back-top {
|
|
background: rgba($theme-color-main, 0.9);
|
|
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;
|
|
|
|
&:hover {
|
|
box-shadow: 0 0 20px #fccc00;
|
|
background: #fccc00;
|
|
-webkit-transition: .4s;
|
|
-moz-transition: .4s;
|
|
transition: .4s;
|
|
color: #333;
|
|
}
|
|
}
|