Dashboard sipadu mbip
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.

_progress-bar.scss 980B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /** =====================
  2. Progress-bar css start
  3. ========================== **/
  4. .progress-xl{
  5. height:30px;
  6. }
  7. .progress-lg{
  8. height:24px;
  9. }
  10. .progres-md{
  11. height:18px;
  12. }
  13. .progress-sm{
  14. height:12px;
  15. }
  16. .progress-xs{
  17. height:6px;
  18. }
  19. .progress-bar-page .progress{
  20. margin-bottom:2rem;
  21. }
  22. $orange-color:#e67e22;
  23. $yellow-color:#f1c40f;
  24. $emrald-color:#2ecc71;
  25. $progress-name:progress-bar-default,progress-bar-primary,progress-bar-success,progress-bar-info,progress-bar-warning,progress-bar-danger,
  26. progress-bar-pink,progress-bar-purple,progress-bar-orange,progress-bar-yellow,progress-bar-emrald;
  27. $progress-color:$default-color, $primary-color,$success-color,$info-color
  28. ,$warning-color ,$danger-color, $pink-color, $purple-color, $orange-color,
  29. $yellow-color,$emrald-color;
  30. @each $var in $progress-name {
  31. $i:index($progress-name, $var);
  32. .#{$var}
  33. {
  34. background-color: nth($progress-color,$i);
  35. }
  36. }
  37. /**====== Progress-bar css end ======**/