progress.sass 674 B

1234567891011121314151617181920212223242526272829303132
  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