summaryrefslogtreecommitdiff
path: root/_bulma/node_modules/bulma/sass/elements/progress.sass
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2021-06-14 22:11:50 -0400
committerAdam T. Carpenter <atc@53hor.net>2021-06-14 22:11:50 -0400
commit3df910b359125d35ca71f4e9419b0bd41d56718c (patch)
tree5820c70c948223d4dcbb329cb05c25b94859a47a /_bulma/node_modules/bulma/sass/elements/progress.sass
parent7a21088226eb6be30e72ec99f695c70e93a76173 (diff)
downloadcarpentertutoring-3df910b359125d35ca71f4e9419b0bd41d56718c.tar.xz
carpentertutoring-3df910b359125d35ca71f4e9419b0bd41d56718c.zip
stripping bulma and cobalt; uneeded at this point
Diffstat (limited to '_bulma/node_modules/bulma/sass/elements/progress.sass')
-rw-r--r--_bulma/node_modules/bulma/sass/elements/progress.sass67
1 files changed, 0 insertions, 67 deletions
diff --git a/_bulma/node_modules/bulma/sass/elements/progress.sass b/_bulma/node_modules/bulma/sass/elements/progress.sass
deleted file mode 100644
index bb43bb6..0000000
--- a/_bulma/node_modules/bulma/sass/elements/progress.sass
+++ /dev/null
@@ -1,67 +0,0 @@
-$progress-bar-background-color: $border-light !default
-$progress-value-background-color: $text !default
-$progress-border-radius: $radius-rounded !default
-
-$progress-indeterminate-duration: 1.5s !default
-
-.progress
- @extend %block
- -moz-appearance: none
- -webkit-appearance: none
- border: none
- border-radius: $progress-border-radius
- 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
- // 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%)
-
- &: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
-
- // 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