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.

_reload_overlay.scss 465B

1234567891011121314151617181920212223242526
  1. .reload_overlay_title {
  2. display: block;
  3. font-size: 16px;
  4. line-height: 20px;
  5. }
  6. .reload_overlay_text {
  7. display: block;
  8. font-size: 12px;
  9. line-height: 30px;
  10. }
  11. #reloadProgressBar {
  12. background: #e9e9e9;
  13. border-radius: 3px;
  14. height: 5px;
  15. margin: 5px auto;
  16. overflow: hidden;
  17. width: 180px;
  18. .progress-indicator-fill {
  19. background: $reloadProgressBarBg;
  20. height: 100%;
  21. transition: width .5s;
  22. }
  23. }