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

github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYan Zhu <picturepan2@hotmail.com>2017-08-29 13:07:53 +0300
committerYan Zhu <picturepan2@hotmail.com>2017-08-29 13:07:53 +0300
commite78b3c34348f26d40a813612c5a3786f1c56607a (patch)
treef857491026c5f728fe95fe1564ec30c931a1b30a /src/_progress.scss
parent66c492fd05c2d720c81e2be8d6845560b868e7ff (diff)
Initial SASS build
Diffstat (limited to 'src/_progress.scss')
-rw-r--r--src/_progress.scss45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/_progress.scss b/src/_progress.scss
new file mode 100644
index 0000000..f173772
--- /dev/null
+++ b/src/_progress.scss
@@ -0,0 +1,45 @@
+// Progress
+// Credit: https://css-tricks.com/html5-progress-element/
+.progress {
+ appearance: none;
+ background: $bg-color-dark;
+ border: 0;
+ border-radius: $border-radius;
+ color: $primary-color;
+ height: $unit-1;
+ position: relative;
+ width: 100%;
+
+ &::-webkit-progress-bar {
+ background: transparent;
+ border-radius: $border-radius;
+ }
+
+ &::-webkit-progress-value {
+ background: $primary-color;
+ border-radius: $border-radius;
+ }
+
+ &::-moz-progress-bar {
+ background: $primary-color;
+ border-radius: $border-radius;
+ }
+
+ &:indeterminate {
+ animation: progress-indeterminate 1.5s linear infinite;
+ background: $bg-color-dark linear-gradient(to right, $primary-color 30%, $bg-color-dark 30%) top left / 150% 150% no-repeat;
+
+ &::-moz-progress-bar {
+ background: transparent;
+ }
+ }
+}
+
+@keyframes progress-indeterminate {
+ 0% {
+ background-position: 200% 0;
+ }
+ 100% {
+ background-position: -200% 0;
+ }
+}