You are here

pace-theme-big-counter.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;
}

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

.pace .pace-progress {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  height: 5rem;
  width: 5rem;
}

.pace .pace-progress:after {
  display: block;
  position: absolute;
  top: 0;
  right: .5rem;
  content: attr(data-progress-text);
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 100;
  font-size: 5rem;
  line-height: 1;
  text-align: right;
  color: rgba(0, 0, 0, 0.19999999999999996);
}

File

css/pace-theme-big-counter.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. }
  9. .pace.pace-inactive .pace-progress {
  10. display: none;
  11. }
  12. .pace .pace-progress {
  13. position: fixed;
  14. z-index: 2000;
  15. top: 0;
  16. right: 0;
  17. height: 5rem;
  18. width: 5rem;
  19. }
  20. .pace .pace-progress:after {
  21. display: block;
  22. position: absolute;
  23. top: 0;
  24. right: .5rem;
  25. content: attr(data-progress-text);
  26. font-family: "Helvetica Neue", sans-serif;
  27. font-weight: 100;
  28. font-size: 5rem;
  29. line-height: 1;
  30. text-align: right;
  31. color: rgba(0, 0, 0, 0.19999999999999996);
  32. }