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.

pace-theme-center-simple.css 1.0KB

2 jaren geleden
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* This is a compiled file, to make changes persist, consider editing under the templates directory */
  2. .pace {
  3. -webkit-pointer-events: none;
  4. pointer-events: none;
  5. -webkit-user-select: none;
  6. -moz-user-select: none;
  7. user-select: none;
  8. z-index: 2000;
  9. position: fixed;
  10. margin: auto;
  11. top: 0;
  12. left: 0;
  13. right: 0;
  14. bottom: 0;
  15. height: 5px;
  16. width: 200px;
  17. background: #fff;
  18. border: 1px solid #ee3148;
  19. overflow: hidden;
  20. }
  21. .pace .pace-progress {
  22. -webkit-box-sizing: border-box;
  23. -moz-box-sizing: border-box;
  24. -ms-box-sizing: border-box;
  25. -o-box-sizing: border-box;
  26. box-sizing: border-box;
  27. -webkit-transform: translate3d(0, 0, 0);
  28. -moz-transform: translate3d(0, 0, 0);
  29. -ms-transform: translate3d(0, 0, 0);
  30. -o-transform: translate3d(0, 0, 0);
  31. transform: translate3d(0, 0, 0);
  32. max-width: 200px;
  33. position: fixed;
  34. z-index: 2000;
  35. display: block;
  36. position: absolute;
  37. top: 0;
  38. right: 100%;
  39. height: 100%;
  40. width: 100%;
  41. background: #ee3148;
  42. }
  43. .pace.pace-inactive {
  44. display: none;
  45. }