You are here

pace-theme-loading-bar.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-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;

  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;

  -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: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 25px;
  border: 2px solid #29d;
  background-color: #fff;
}

.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-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;

  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-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);
  transform: translate3d(0, 0, 0);

  max-width: 190px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  height: 15px;
  font-size: 12px;
  background: #29d;
  color: #29d;
  line-height: 60px;
  font-weight: bold;
  font-family:  Helvetica, Arial, "Lucida Grande", sans-serif;
}

.pace .pace-progress:after {
  content: attr(data-progress-text);
  display: inline-block;
}

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

File

css/pace-theme-loading-bar.css
View source
  1. /* This is a compiled file, you should be editing the file in the templates directory */
  2. .pace {
  3. -webkit-box-sizing: border-box;
  4. -moz-box-sizing: border-box;
  5. -ms-box-sizing: border-box;
  6. -o-box-sizing: border-box;
  7. box-sizing: border-box;
  8. -webkit-border-radius: 10px;
  9. -moz-border-radius: 10px;
  10. border-radius: 10px;
  11. -moz-background-clip: padding;
  12. -webkit-background-clip: padding-box;
  13. background-clip: padding-box;
  14. -webkit-pointer-events: none;
  15. pointer-events: none;
  16. -webkit-user-select: none;
  17. -moz-user-select: none;
  18. user-select: none;
  19. z-index: 2000;
  20. position: fixed;
  21. margin: auto;
  22. top: 12px;
  23. left: 0;
  24. right: 0;
  25. bottom: 0;
  26. width: 200px;
  27. height: 25px;
  28. border: 2px solid #29d;
  29. background-color: #fff;
  30. }
  31. .pace .pace-progress {
  32. -webkit-box-sizing: border-box;
  33. -moz-box-sizing: border-box;
  34. -ms-box-sizing: border-box;
  35. -o-box-sizing: border-box;
  36. box-sizing: border-box;
  37. -webkit-border-radius: 5px;
  38. -moz-border-radius: 5px;
  39. border-radius: 5px;
  40. -webkit-background-clip: padding-box;
  41. -moz-background-clip: padding;
  42. background-clip: padding-box;
  43. -webkit-transition: width 1s ease-in-out 1s linear;
  44. -moz-transition: width 1s ease-in-out 1s linear;
  45. -ms-transition: width 1s ease-in-out 1s linear;
  46. -o-transition: width 1s ease-in-out 1s linear;
  47. transition: width 1s ease-in-out 1s linear;
  48. -webkit-transform: translate3d(0, 0, 0);
  49. transform: translate3d(0, 0, 0);
  50. max-width: 190px;
  51. position: fixed;
  52. z-index: 2000;
  53. display: block;
  54. position: absolute;
  55. left: 3px;
  56. top: 3px;
  57. height: 15px;
  58. font-size: 12px;
  59. background: #29d;
  60. color: #29d;
  61. line-height: 60px;
  62. font-weight: bold;
  63. font-family: Helvetica, Arial, "Lucida Grande", sans-serif;
  64. }
  65. .pace .pace-progress:after {
  66. content: attr(data-progress-text);
  67. display: inline-block;
  68. }
  69. .pace.pace-inactive {
  70. display: none;
  71. }