Cool-Y.github.io/themes/next/source/css/_common/components/back-to-top.styl

32 lines
766 B
Stylus
Raw Permalink Normal View History

2019-04-02 08:28:32 +00:00
.back-to-top {
box-sizing: border-box;
position: fixed;
bottom: $b2t-position-bottom;
right: $b2t-position-right;
z-index: $zindex-5;
padding: 0 6px;
width: hexo-config('sidebar.scrollpercent') ? initial : 24px;
background: $b2t-bg-color;
font-size: $b2t-font-size;
opacity: $b2t-opacity;
color: $b2t-color;
cursor: pointer;
text-align: center;
-webkit-transform: translateZ(0);
transition-property: bottom;
the-transition();
+tablet() {
fixbutton() if hexo-config('sidebar.onmobile');
hide() if not hexo-config('sidebar.onmobile');
}
+mobile() {
fixbutton() if hexo-config('sidebar.onmobile');
hide() if not hexo-config('sidebar.onmobile');
}
&.back-to-top-on {
bottom: $b2t-position-bottom-on;
}
}