Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/eshlox/simplicity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/_components/progress_bar.scss')
-rw-r--r--src/styles/_components/progress_bar.scss15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/styles/_components/progress_bar.scss b/src/styles/_components/progress_bar.scss
new file mode 100644
index 0000000..6be75d3
--- /dev/null
+++ b/src/styles/_components/progress_bar.scss
@@ -0,0 +1,15 @@
+.progress-container {
+ background: transparent;
+ height: 0.1rem;
+ left: 0;
+ position: fixed;
+ top: 0;
+ width: 100%;
+ z-index: 1000;
+
+ .progress-bar {
+ background: $links-color;
+ height: 0.1rem;
+ width: 0;
+ }
+}