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

23 lines
427 B
SCSS
Raw Normal View History

2021-04-19 03:12:49 +00:00
@charset "utf-8";
@import "variables";
.go-back-top {
background: rgba($theme-color-main, 0.9);
text-align: center;
padding: 10px 12px;
position: fixed;
bottom: 15px;
right: 15px;
cursor: pointer;
display: none;
color: $theme-white;
2021-06-28 11:22:20 +00:00
font-size: 0.75em;
2021-04-19 03:12:49 +00:00
border-radius: 2px;
2021-09-03 03:45:44 +00:00
behavior: url("/assets/ie_support/PIE2/PIE.htc");
2021-04-19 03:12:49 +00:00
z-index: 1050;
&:hover {
background: rgba($theme-color-main, 1);
}
}