reading-progress.styl 334 B

123456789101112131415
  1. .reading-progress-bar {
  2. background: unquote(hexo-config('reading_progress.color'));
  3. display: block;
  4. height: unquote(hexo-config('reading_progress.height'));
  5. left: 0;
  6. position: fixed;
  7. width: 0;
  8. z-index: $zindex-5;
  9. if (hexo-config('reading_progress.position') == 'bottom') {
  10. bottom: 0;
  11. } else {
  12. top: 0;
  13. }
  14. }