Animation.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. .cesium-animation-theme {
  2. visibility: hidden;
  3. display: block;
  4. position: absolute;
  5. z-index: -100;
  6. }
  7. .cesium-animation-themeNormal {
  8. color: #222;
  9. }
  10. .cesium-animation-themeHover {
  11. color: #4488B0;
  12. }
  13. .cesium-animation-themeSelect {
  14. color: #242;
  15. }
  16. .cesium-animation-themeDisabled {
  17. color: #333;
  18. }
  19. .cesium-animation-themeKnob {
  20. color: #222;
  21. }
  22. .cesium-animation-themePointer {
  23. color: #2E2;
  24. }
  25. .cesium-animation-themeSwoosh {
  26. color: #8AC;
  27. }
  28. .cesium-animation-themeSwooshHover {
  29. color: #AEF;
  30. }
  31. .cesium-animation-svgText {
  32. fill: #edffff;
  33. font-family: Sans-Serif;
  34. font-size: 15px;
  35. text-anchor: middle;
  36. }
  37. .cesium-animation-blank {
  38. fill: #000;
  39. fill-opacity: 0.01; /* This must be clickable, so it can't be 'fill: none'. */
  40. stroke: none;
  41. }
  42. .cesium-animation-rectButton {
  43. cursor: pointer;
  44. -moz-user-select: none;
  45. -webkit-user-select: none;
  46. user-select: none;
  47. }
  48. .cesium-animation-rectButton .cesium-animation-buttonGlow {
  49. fill: #fff;
  50. stroke: none;
  51. /* Widget will add: filter: url(#animation_blurred); */
  52. display: none;
  53. }
  54. .cesium-animation-rectButton:hover .cesium-animation-buttonGlow {
  55. display: block;
  56. }
  57. .cesium-animation-rectButton .cesium-animation-buttonPath {
  58. fill: #edffff;
  59. }
  60. .cesium-animation-rectButton .cesium-animation-buttonMain {
  61. /* Widget will add: fill: url(#animation_buttonNormal); */
  62. stroke: #444;
  63. stroke-width: 1.2;
  64. }
  65. .cesium-animation-rectButton:hover .cesium-animation-buttonMain {
  66. /* Widget will add: fill: url(#animation_buttonHovered); */
  67. stroke: #AEF;
  68. }
  69. .cesium-animation-rectButton:active .cesium-animation-buttonMain {
  70. fill: #ABD6FF;
  71. }
  72. .cesium-animation-buttonDisabled {
  73. -moz-user-select: none;
  74. -webkit-user-select: none;
  75. user-select: none;
  76. }
  77. .cesium-animation-buttonDisabled .cesium-animation-buttonMain {
  78. /* Widget will add: fill: url(#animation_buttonDisabled); */
  79. stroke: #555;
  80. }
  81. .cesium-animation-buttonDisabled .cesium-animation-buttonPath {
  82. fill: #818181;
  83. }
  84. .cesium-animation-buttonDisabled .cesium-animation-buttonGlow {
  85. display: none;
  86. }
  87. .cesium-animation-buttonToggled .cesium-animation-buttonGlow {
  88. display: block;
  89. fill: #2E2;
  90. }
  91. .cesium-animation-buttonToggled .cesium-animation-buttonMain {
  92. stroke: #2E2;
  93. }
  94. .cesium-animation-buttonToggled:hover .cesium-animation-buttonGlow {
  95. fill: #fff;
  96. }
  97. .cesium-animation-buttonToggled:hover .cesium-animation-buttonMain {
  98. stroke: #2E2;
  99. }
  100. .cesium-animation-shuttleRingG {
  101. cursor: pointer;
  102. }
  103. /* Widget will add:
  104. .cesium-animation-shuttleRingG .cesium-animation-shuttleRingSwoosh {
  105. fill: url(#animation_shuttleRingSwooshGradient);
  106. }
  107. .cesium-animation-shuttleRingG:hover .cesium-animation-shuttleRingSwoosh {
  108. fill: url(#animation_shuttleRingSwooshHovered);
  109. }
  110. */
  111. .cesium-animation-shuttleRingPointer {
  112. /* Widget will add: fill: url(#animation_shuttleRingPointerGradient); */
  113. cursor: pointer;
  114. }
  115. .cesium-animation-shuttleRingPausePointer {
  116. /* Widget will add: fill: url(#animation_shuttleRingPointerPaused); */
  117. cursor: pointer;
  118. }
  119. .cesium-animation-shuttleRingBack {
  120. fill: #181818;
  121. fill-opacity: 0.8;
  122. stroke: #333;
  123. stroke-width: 1.2;
  124. }
  125. .cesium-animation-shuttleRingSwoosh line {
  126. stroke: #8AC;
  127. stroke-width: 3;
  128. stroke-opacity: 0.2;
  129. stroke-linecap: round;
  130. }
  131. .cesium-animation-knobOuter {
  132. /* Widget will add: fill: url(#animation_knobOuter); */
  133. cursor: pointer;
  134. stroke: #444;
  135. stroke-width: 1.2;
  136. }
  137. .cesium-animation-knobInner {
  138. /* Widget will add: fill: url(#animation_knobInner); */
  139. cursor: pointer;
  140. }