You are here

pace-theme-center-simple.css in PACE - Page load progress bar 7

/* This is a compiled file, you should be editing the file in the templates directory */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 200px;
  background: #fff;
  border: 1px solid #29d;
}

.pace .pace-progress {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition: width 1s ease-in-out 1s linear;
  -moz-transition: width 1s ease-in-out 1s linear;
  -ms-transition: width 1s ease-in-out 1s linear;
  -o-transition: width 1s ease-in-out 1s linear;
  transition: width 1s ease-in-out 1s linear;

  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  max-width: 200px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  background: #29d;
}

.pace.pace-inactive {
  display: none;
}

File

css/pace-theme-center-simple.css
View source
  1. /* This is a compiled file, you should be editing the file in 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 #29d;
  19. }
  20. .pace .pace-progress {
  21. -webkit-box-sizing: border-box;
  22. -moz-box-sizing: border-box;
  23. -ms-box-sizing: border-box;
  24. -o-box-sizing: border-box;
  25. box-sizing: border-box;
  26. -webkit-transition: width 1s ease-in-out 1s linear;
  27. -moz-transition: width 1s ease-in-out 1s linear;
  28. -ms-transition: width 1s ease-in-out 1s linear;
  29. -o-transition: width 1s ease-in-out 1s linear;
  30. transition: width 1s ease-in-out 1s linear;
  31. -webkit-transform: translate3d(0, 0, 0);
  32. -moz-transform: translate3d(0, 0, 0);
  33. -ms-transform: translate3d(0, 0, 0);
  34. -o-transform: translate3d(0, 0, 0);
  35. transform: translate3d(0, 0, 0);
  36. max-width: 200px;
  37. position: fixed;
  38. z-index: 2000;
  39. display: block;
  40. position: absolute;
  41. left: 0px;
  42. top: 0px;
  43. height: 100%;
  44. background: #29d;
  45. }
  46. .pace.pace-inactive {
  47. display: none;
  48. }