You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
674 B

  1. .progress
  2. @extend .block
  3. -moz-appearance: none
  4. -webkit-appearance: none
  5. border: none
  6. border-radius: 290486px
  7. display: block
  8. height: 12px
  9. overflow: hidden
  10. padding: 0
  11. width: 100%
  12. &::-webkit-progress-bar
  13. background-color: $border
  14. &::-webkit-progress-value
  15. background-color: $text
  16. &::-moz-progress-bar
  17. background-color: $text
  18. // Colors
  19. @each $name, $pair in $colors
  20. $color: nth($pair, 1)
  21. &.is-#{$name}
  22. &::-webkit-progress-value
  23. background-color: $color
  24. &::-moz-progress-bar
  25. background-color: $color
  26. // Sizes
  27. &.is-small
  28. height: 8px
  29. &.is-medium
  30. height: 16px
  31. &.is-large
  32. height: 20px