pace-theme-center-radar.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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: #2299dd transparent transparent;
  34. border-radius: 50%;
  35. -webkit-animation: spin 1s linear infinite;
  36. -moz-animation: spin 1s linear infinite;
  37. -o-animation: spin 1s linear infinite;
  38. animation: spin 1s linear infinite;
  39. }
  40. .pace .pace-activity:before {
  41. content: ' ';
  42. position: absolute;
  43. top: 10px;
  44. left: 10px;
  45. height: 50px;
  46. width: 50px;
  47. display: block;
  48. border-width: 10px;
  49. border-style: solid;
  50. border-color: #2299dd transparent transparent;
  51. border-radius: 50%;
  52. }
  53. @-webkit-keyframes spin {
  54. 100% { -webkit-transform: rotate(359deg); }
  55. }
  56. @-moz-keyframes spin {
  57. 100% { -moz-transform: rotate(359deg); }
  58. }
  59. @-o-keyframes spin {
  60. 100% { -moz-transform: rotate(359deg); }
  61. }
  62. @keyframes spin {
  63. 100% { transform: rotate(359deg); }
  64. }