pace-theme-big-counter.css 706 B

1234567891011121314151617181920212223242526272829303132333435
  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. }