You are here

pace-theme-flat-top.css in PACE - Page load progress bar 8

/* 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;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  -webkit-transform: translate3d(0, -50px, 0);
  -ms-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);

  -webkit-transition: -webkit-transform .5s ease-out;
  -ms-transition: -webkit-transform .5s ease-out;
  transition: transform .5s ease-out;
}

.pace.pace-active {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pace .pace-progress {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 10px;
  background: #e90f92;

  pointer-events: none;
}

File

css/pink/pace-theme-flat-top.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. position: fixed;
  9. top: 0;
  10. left: 0;
  11. width: 100%;
  12. -webkit-transform: translate3d(0, -50px, 0);
  13. -ms-transform: translate3d(0, -50px, 0);
  14. transform: translate3d(0, -50px, 0);
  15. -webkit-transition: -webkit-transform .5s ease-out;
  16. -ms-transition: -webkit-transform .5s ease-out;
  17. transition: transform .5s ease-out;
  18. }
  19. .pace.pace-active {
  20. -webkit-transform: translate3d(0, 0, 0);
  21. -ms-transform: translate3d(0, 0, 0);
  22. transform: translate3d(0, 0, 0);
  23. }
  24. .pace .pace-progress {
  25. display: block;
  26. position: fixed;
  27. z-index: 2000;
  28. top: 0;
  29. right: 100%;
  30. width: 100%;
  31. height: 10px;
  32. background: #e90f92;
  33. pointer-events: none;
  34. }