您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_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. }