hexo-theme-keep/source/css/layout/_partial/progress-bar.styl

70 lines
1.2 KiB
Stylus
Raw Normal View History

2021-01-06 18:36:28 +08:00
.progress-bar-container {
position fixed
top 0
left 0
z-index $z-index-9
width 100%
2021-01-06 18:36:28 +08:00
if (hexo-config('pjax.enable') == true) {
2021-01-06 18:36:28 +08:00
.pjax-progress-bar {
position absolute
top 0
left 0
z-index $z-index-8
width 0
height 2px
background var(--pjax-progress-bar-color)
visibility hidden
opacity 0
transition-t("width, opacity", "0, 0", "0.1, 0.1", "linear")
&.show {
visibility visible
opacity 1
}
2021-01-06 18:36:28 +08:00
}
.pjax-progress-icon {
position absolute
top 0.4rem
right 0.3rem
z-index $z-index-8
2022-10-14 17:56:32 +08:00
color var(--text-color-3)
font-size 1.1rem
visibility hidden
2021-01-06 23:31:00 +08:00
2021-01-11 00:10:59 +08:00
+keep-tablet() {
top 0.3rem
right 0.2rem
font-size 1rem
2021-01-11 00:10:59 +08:00
}
&.show {
visibility visible
}
2021-01-06 23:31:00 +08:00
}
}
if (hexo-config('style.scroll.progress_bar') == true) {
2021-01-06 18:36:28 +08:00
.scroll-progress-bar {
position absolute
top 0
left 0
z-index $z-index-7
width 0
height $scroll-progress-bar-height
background var(--primary-color)
visibility hidden
transition-t("width", "0", "0.1", "linear")
&.hide {
display none !important
}
2021-01-06 18:36:28 +08:00
}
}
}