You are here

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

  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: #29d transparent transparent;
  border-radius: 50%;

  -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: #29d transparent transparent;
  border-radius: 50%;
}


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