mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-17 18:22:33 +00:00
22 lines
365 B
Stylus
22 lines
365 B
Stylus
.back-to-top {
|
|
background: transparent;
|
|
margin: 20px - $sidebar-offset -10px -20px;
|
|
opacity: 0;
|
|
transition: opacity $transition-ease;
|
|
|
|
if (!hexo-config('back2top.scrollpercent')) {
|
|
span {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&.back-to-top-on {
|
|
cursor: pointer;
|
|
opacity: $b2t-opacity;
|
|
|
|
&:hover {
|
|
opacity: $b2t-opacity-hover;
|
|
}
|
|
}
|
|
}
|