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.
 
 
 
 
 

61 lines
1.2 KiB

  1. #pace-cover {
  2. position: fixed;
  3. left: 0px;
  4. top: 0px;
  5. width: 100%;
  6. height: 100%;
  7. z-index: 1999;
  8. background-color: #F5F7FA;
  9. }
  10. .pace {
  11. -webkit-pointer-events: none;
  12. pointer-events: none;
  13. -webkit-user-select: none;
  14. -moz-user-select: none;
  15. user-select: none;
  16. z-index: 2000;
  17. position: fixed;
  18. margin: auto;
  19. top: 0;
  20. left: 0;
  21. right: 0;
  22. bottom: 0;
  23. height: 5px;
  24. width: 200px;
  25. background: #fff;
  26. border: 1px solid #A0D468;
  27. overflow: hidden;
  28. }
  29. .pace .pace-progress {
  30. -webkit-box-sizing: border-box;
  31. -moz-box-sizing: border-box;
  32. -ms-box-sizing: border-box;
  33. -o-box-sizing: border-box;
  34. box-sizing: border-box;
  35. -webkit-transform: translate3d(0, 0, 0);
  36. -moz-transform: translate3d(0, 0, 0);
  37. -ms-transform: translate3d(0, 0, 0);
  38. -o-transform: translate3d(0, 0, 0);
  39. transform: translate3d(0, 0, 0);
  40. max-width: 200px;
  41. position: fixed;
  42. z-index: 2000;
  43. display: block;
  44. position: absolute;
  45. top: 0;
  46. right: 100%;
  47. height: 100%;
  48. width: 100%;
  49. background: #A0D468;
  50. }
  51. .pace.pace-inactive {
  52. display: none;
  53. }