summaryrefslogtreecommitdiff
path: root/_sass/elements/progress.sass
diff options
context:
space:
mode:
author53hornet <53hornet@gmail.com>2019-03-31 08:53:18 -0400
committer53hornet <53hornet@gmail.com>2019-03-31 08:53:18 -0400
commit06e7a9f33088354b63561e9bf131f399416ec77d (patch)
tree12c30928aac9bea12f44f6d3bf6e076bd4d62e06 /_sass/elements/progress.sass
parent99e7f9ef139798e8947def7b5b7ad25a8f4573ff (diff)
downloadcobalt-site-06e7a9f33088354b63561e9bf131f399416ec77d.tar.xz
cobalt-site-06e7a9f33088354b63561e9bf131f399416ec77d.zip
Ignoring Bulma sass.
Diffstat (limited to '_sass/elements/progress.sass')
-rw-r--r--_sass/elements/progress.sass65
1 files changed, 0 insertions, 65 deletions
diff --git a/_sass/elements/progress.sass b/_sass/elements/progress.sass
deleted file mode 100644
index b263eeb..0000000
--- a/_sass/elements/progress.sass
+++ /dev/null
@@ -1,65 +0,0 @@
-$progress-bar-background-color: $border !default
-$progress-value-background-color: $text !default
-
-$progress-indeterminate-duration: 1.5s !default
-
-.progress
- @extend %block
- -moz-appearance: none
- -webkit-appearance: none
- border: none
- border-radius: $radius-rounded
- display: block
- height: $size-normal
- overflow: hidden
- padding: 0
- width: 100%
- &::-webkit-progress-bar
- background-color: $progress-bar-background-color
- &::-webkit-progress-value
- background-color: $progress-value-background-color
- &::-moz-progress-bar
- background-color: $progress-value-background-color
- &::-ms-fill
- background-color: $progress-value-background-color
- border: none
- &:indeterminate
- animation-duration: $progress-indeterminate-duration
- animation-iteration-count: infinite
- animation-name: moveIndeterminate
- animation-timing-function: linear
- background-color: $progress-bar-background-color
- background-image: linear-gradient(to right, $text 30%, $progress-bar-background-color 30%)
- background-position: top left
- background-repeat: no-repeat
- background-size: 150% 150%
- &::-webkit-progress-bar
- background-color: transparent
- &::-moz-progress-bar
- background-color: transparent
- // Colors
- @each $name, $pair in $colors
- $color: nth($pair, 1)
- &.is-#{$name}
- &::-webkit-progress-value
- background-color: $color
- &::-moz-progress-bar
- background-color: $color
- &::-ms-fill
- background-color: $color
- &:indeterminate
- background-image: linear-gradient(to right, $color 30%, $progress-bar-background-color 30%)
-
- // Sizes
- &.is-small
- height: $size-small
- &.is-medium
- height: $size-medium
- &.is-large
- height: $size-large
-
-@keyframes moveIndeterminate
- from
- background-position: 200% 0
- to
- background-position: -200% 0