2
0

_progressbar.scss 574 B

12345678910111213141516171819202122232425
  1. .progress {
  2. border-radius: 1.2em;
  3. background-color: $color-teal-dark;
  4. border: 1px solid $color-teal;
  5. opacity: 0;
  6. &.active {
  7. @include transition(opacity 0.3s ease);
  8. opacity: 1;
  9. }
  10. .bar {
  11. @include transition(width 0.3s ease);
  12. border-radius: 1.5em;
  13. overflow: hidden;
  14. box-sizing: border-box;
  15. text-align: right;
  16. line-height: 1.2em;
  17. color: $color-white;
  18. font-size: 0.85em;
  19. background-color: $color-teal;
  20. height: 1.2em;
  21. padding-right: 1em;
  22. }
  23. }