智慧水务管理系统 - 精河县供水工程综合管理平台

NavigationHelpButton.css 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. .cesium-navigationHelpButton-wrapper {
  2. position: relative;
  3. display: inline-block;
  4. }
  5. .cesium-navigation-help {
  6. visibility: hidden;
  7. position: absolute;
  8. top: 38px;
  9. right: 2px;
  10. width: 250px;
  11. border-radius: 10px;
  12. transform: scale(0.01);
  13. transform-origin: 234px -10px;
  14. transition:
  15. visibility 0s 0.25s,
  16. transform 0.25s ease-in;
  17. }
  18. .cesium-navigation-help-visible {
  19. visibility: visible;
  20. transform: scale(1);
  21. transition: transform 0.25s ease-out;
  22. }
  23. .cesium-navigation-help-instructions {
  24. border: 1px solid #444;
  25. background-color: rgba(38, 38, 38, 0.75);
  26. padding-bottom: 5px;
  27. border-radius: 0 0 10px 10px;
  28. }
  29. .cesium-click-navigation-help {
  30. display: none;
  31. }
  32. .cesium-touch-navigation-help {
  33. display: none;
  34. padding-top: 5px;
  35. }
  36. .cesium-click-navigation-help-visible {
  37. display: block;
  38. }
  39. .cesium-touch-navigation-help-visible {
  40. display: block;
  41. }
  42. .cesium-navigation-help-pan {
  43. color: #66ccff;
  44. font-weight: bold;
  45. }
  46. .cesium-navigation-help-zoom {
  47. color: #65fd00;
  48. font-weight: bold;
  49. }
  50. .cesium-navigation-help-rotate {
  51. color: #ffd800;
  52. font-weight: bold;
  53. }
  54. .cesium-navigation-help-tilt {
  55. color: #d800d8;
  56. font-weight: bold;
  57. }
  58. .cesium-navigation-help-details {
  59. color: #ffffff;
  60. }
  61. .cesium-navigation-button {
  62. color: #fff;
  63. background-color: transparent;
  64. border-bottom: none;
  65. border-top: 1px solid #444;
  66. border-right: 1px solid #444;
  67. margin: 0;
  68. width: 50%;
  69. cursor: pointer;
  70. }
  71. .cesium-navigation-button-icon {
  72. vertical-align: middle;
  73. padding: 5px 1px;
  74. }
  75. .cesium-navigation-button:focus {
  76. outline: none;
  77. }
  78. .cesium-navigation-button-left {
  79. border-radius: 10px 0 0 0;
  80. border-left: 1px solid #444;
  81. }
  82. .cesium-navigation-button-right {
  83. border-radius: 0 10px 0 0;
  84. border-left: none;
  85. }
  86. .cesium-navigation-button-selected {
  87. background-color: rgba(38, 38, 38, 0.75);
  88. }
  89. .cesium-navigation-button-unselected {
  90. background-color: rgba(0, 0, 0, 0.75);
  91. }
  92. .cesium-navigation-button-unselected:hover {
  93. background-color: rgba(76, 76, 76, 0.75);
  94. }