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

locationbar.scss 417B

12345678910111213141516171819202122232425262728
  1. .dc-location-bar {
  2. position: absolute;
  3. left: 270px;
  4. bottom: 2px;
  5. font-size: 14px;
  6. color: rgb(255, 255, 255);
  7. background: rgba(0, 0, 0, 0.6);
  8. padding: 2px 5px;
  9. border-radius: 2px;
  10. user-select: none;
  11. display: flex;
  12. span {
  13. margin: 0 8px;
  14. display: inline-block;
  15. }
  16. .mouse-bar{
  17. span{
  18. min-width: 100px;
  19. }
  20. }
  21. .ms-bar,.fps-bar{
  22. span{
  23. min-width: 70px;
  24. }
  25. }
  26. }