This repository has been archived on 2025-08-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
hugo-mistergeek/assets/css/scss/elements/_page-scroll-progress.scss
2025-08-19 09:54:49 +02:00

34 lines
654 B
SCSS

//
// Page Scroll Progress //
//
.page-progress-container {
position: fixed;
bottom: 0;
left: 0;
z-index: 999;
width: 100%;
height: 4px;
}
.page-progress-bar {
height: 4px;
width: 0%;
background-image: $gradient-1;
&.page-progress-gradient-2 {
background-image: $gradient-2;
}
&.page-progress-gradient-3 {
background-image: $gradient-3;
}
&.page-progress-gradient-4 {
background-image: $gradient-4;
}
&.page-progress-gradient-5 {
background-image: $gradient-5;
}
&.page-progress-gradient-6 {
background-image: $gradient-6;
}
&.page-progress-gradient-7 {
background-image: $gradient-7;
}
}