You are here

pace-theme-center-radar.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;

  z-index: 2000;
  position: fixed;
  height: 90px;
  width: 90px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

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

.pace .pace-activity {
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  left: -30px;
  top: -30px;
  height: 90px;
  width: 90px;
  display: block;
  border-width: 30px;
  border-style: double;
  border-color: #ffffff transparent transparent;
  border-radius: 50%;

  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;

  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  -o-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.pace .pace-activity:before {
  content: ' ';
  position: absolute;
  top: 10px;
  left: 10px;
  height: 50px;
  width: 50px;
  display: block;
  border-width: 10px;
  border-style: solid;
  border-color: #ffffff transparent transparent;
  border-radius: 50%;

  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

@-webkit-keyframes spin {
  100% { -webkit-transform: rotate(359deg); }
}

@-moz-keyframes spin {
  100% { -moz-transform: rotate(359deg); }
}

@-o-keyframes spin {
  100% { -moz-transform: rotate(359deg); }
}

@keyframes spin {
  100% {  transform: rotate(359deg); }
}

File

css/white/pace-theme-center-radar.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. height: 90px;
  11. width: 90px;
  12. margin: auto;
  13. top: 0;
  14. left: 0;
  15. right: 0;
  16. bottom: 0;
  17. }
  18. .pace.pace-inactive .pace-activity {
  19. display: none;
  20. }
  21. .pace .pace-activity {
  22. position: fixed;
  23. z-index: 2000;
  24. display: block;
  25. position: absolute;
  26. left: -30px;
  27. top: -30px;
  28. height: 90px;
  29. width: 90px;
  30. display: block;
  31. border-width: 30px;
  32. border-style: double;
  33. border-color: #ffffff transparent transparent;
  34. border-radius: 50%;
  35. -webkit-box-sizing: content-box;
  36. -moz-box-sizing: content-box;
  37. box-sizing: content-box;
  38. -webkit-animation: spin 1s linear infinite;
  39. -moz-animation: spin 1s linear infinite;
  40. -o-animation: spin 1s linear infinite;
  41. animation: spin 1s linear infinite;
  42. }
  43. .pace .pace-activity:before {
  44. content: ' ';
  45. position: absolute;
  46. top: 10px;
  47. left: 10px;
  48. height: 50px;
  49. width: 50px;
  50. display: block;
  51. border-width: 10px;
  52. border-style: solid;
  53. border-color: #ffffff transparent transparent;
  54. border-radius: 50%;
  55. -webkit-box-sizing: content-box;
  56. -moz-box-sizing: content-box;
  57. box-sizing: content-box;
  58. }
  59. @-webkit-keyframes spin {
  60. 100% { -webkit-transform: rotate(359deg); }
  61. }
  62. @-moz-keyframes spin {
  63. 100% { -moz-transform: rotate(359deg); }
  64. }
  65. @-o-keyframes spin {
  66. 100% { -moz-transform: rotate(359deg); }
  67. }
  68. @keyframes spin {
  69. 100% { transform: rotate(359deg); }
  70. }