progress.css 502 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/3084859
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * Progress bar specific styles.
  10. */
  11. .progress__track {
  12. overflow: hidden;
  13. height: 1.125rem;
  14. border: 1px solid #0d77b5;
  15. border-radius: 0.1875rem;
  16. }
  17. .progress__bar {
  18. height: 1.125rem;
  19. background-color: #0d77b5;
  20. }
  21. [dir="ltr"] .progress__percentage {
  22. margin-left: 1rem;
  23. }
  24. [dir="rtl"] .progress__percentage {
  25. margin-right: 1rem;
  26. }