临河任务调度
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

53 行
996B

  1. .spinner {
  2. width: 40px;
  3. height: 40px;
  4. display: block;
  5. position: fixed;
  6. top: calc( 50% - ( 40px / 2) );
  7. right: calc( 50% - ( 40px / 2) );
  8. }
  9. .double-bounce1, .double-bounce2 {
  10. width: 100%;
  11. height: 100%;
  12. border-radius: 50%;
  13. background-color: #333;
  14. opacity: 0.6;
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  19. animation: sk-bounce 2.0s infinite ease-in-out;
  20. }
  21. .double-bounce2 {
  22. -webkit-animation-delay: -1.0s;
  23. animation-delay: -1.0s;
  24. }
  25. @-webkit-keyframes sk-bounce {
  26. 0%, 100% {
  27. -webkit-transform: scale(0.0)
  28. }
  29. 50% {
  30. -webkit-transform: scale(1.0)
  31. }
  32. }
  33. @keyframes sk-bounce {
  34. 0%, 100% {
  35. transform: scale(0.0);
  36. -webkit-transform: scale(0.0);
  37. }
  38. 50% {
  39. transform: scale(1.0);
  40. -webkit-transform: scale(1.0);
  41. }
  42. }
  43. #ApplicationContainer > div:first-child:not(:only-child) {
  44. display: none !important;
  45. }