mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-17 18:22:33 +00:00
15 lines
316 B
Stylus
15 lines
316 B
Stylus
.reading-progress-bar {
|
|
background: unquote(hexo-config('reading_progress.color'));
|
|
height: unquote(hexo-config('reading_progress.height'));
|
|
left: 0;
|
|
position: fixed;
|
|
width: 0;
|
|
z-index: $zindex-5;
|
|
|
|
if (hexo-config('reading_progress.position') == 'bottom') {
|
|
bottom: 0;
|
|
} else {
|
|
top: 0;
|
|
}
|
|
}
|