blog/themes/next/source/css/_common/components/back-to-top-sidebar.styl
2019-05-30 18:52:14 +08:00

20 lines
412 B
Stylus

.back-to-top {
visibility: hidden;
margin: (20px - $sidebar-offset) -10px -20px;
background: $b2t-sidebar-bg-color;
font-size: $b2t-font-size;
opacity: $b2t-opacity;
cursor: pointer;
text-align: center;
&:hover { opacity: $b2t-opacity-hover; }
+tablet-mobile() {
hide() if not hexo-config('sidebar.onmobile');
}
&.back-to-top-on {
visibility: visible;
the-transition();
}
}