You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pace-theme-center-radar.css 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* This is a compiled file, to make changes persist, consider editing under 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: #2299dd 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: #2299dd 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% {
  61. -webkit-transform: rotate(359deg);
  62. }
  63. }
  64. @-moz-keyframes spin {
  65. 100% {
  66. -moz-transform: rotate(359deg);
  67. }
  68. }
  69. @-o-keyframes spin {
  70. 100% {
  71. -moz-transform: rotate(359deg);
  72. }
  73. }
  74. @keyframes spin {
  75. 100% {
  76. transform: rotate(359deg);
  77. }
  78. }