园林绿化
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.

119 lines
2.2 KiB

  1. .cesium-widget {
  2. font-family: sans-serif;
  3. font-size: 16px;
  4. overflow: hidden;
  5. display: block;
  6. position: relative;
  7. top: 0;
  8. left: 0;
  9. width: 100%;
  10. height: 100%;
  11. }
  12. .cesium-widget,
  13. .cesium-widget canvas {
  14. width: 100%;
  15. height: 100%;
  16. touch-action: none;
  17. }
  18. .cesium-widget-credits {
  19. display: block;
  20. position: absolute;
  21. bottom: 0;
  22. left: 0;
  23. color: #fff;
  24. font-size: 10px;
  25. text-shadow: 0px 0px 2px #000000;
  26. padding-right: 5px;
  27. }
  28. .cesium-widget-errorPanel {
  29. position: absolute;
  30. top: 0;
  31. right: 0;
  32. bottom: 0;
  33. left: 0;
  34. text-align: center;
  35. background: rgba(0, 0, 0, 0.7);
  36. z-index: 99999;
  37. }
  38. .cesium-widget-errorPanel:before {
  39. display: inline-block;
  40. vertical-align: middle;
  41. height: 100%;
  42. content: "";
  43. }
  44. .cesium-widget-errorPanel-content {
  45. width: 75%;
  46. max-width: 500px;
  47. display: inline-block;
  48. text-align: left;
  49. vertical-align: middle;
  50. border: 1px solid #510c00;
  51. border-radius: 7px;
  52. background-color: #f0d9d5;
  53. font-size: 14px;
  54. color: #510c00;
  55. }
  56. .cesium-widget-errorPanel-content.expanded {
  57. max-width: 75%;
  58. }
  59. .cesium-widget-errorPanel-header {
  60. font-size: 18px;
  61. font-family: "Open Sans", Verdana, Geneva, sans-serif;
  62. background: #d69d93;
  63. border-bottom: 2px solid #510c00;
  64. padding-bottom: 10px;
  65. border-radius: 3px 3px 0 0;
  66. padding: 15px;
  67. }
  68. .cesium-widget-errorPanel-scroll {
  69. overflow: auto;
  70. font-family: "Open Sans", Verdana, Geneva, sans-serif;
  71. white-space: pre-wrap;
  72. padding: 0 15px;
  73. margin: 10px 0 20px 0;
  74. }
  75. .cesium-widget-errorPanel-buttonPanel {
  76. padding: 0 15px;
  77. margin: 10px 0 20px 0;
  78. text-align: right;
  79. }
  80. .cesium-widget-errorPanel-buttonPanel button {
  81. border-color: #510c00;
  82. background: #d69d93;
  83. color: #202020;
  84. margin: 0;
  85. }
  86. .cesium-widget-errorPanel-buttonPanel button:focus {
  87. border-color: #510c00;
  88. background: #f0d9d5;
  89. color: #510c00;
  90. }
  91. .cesium-widget-errorPanel-buttonPanel button:hover {
  92. border-color: #510c00;
  93. background: #f0d9d5;
  94. color: #510c00;
  95. }
  96. .cesium-widget-errorPanel-buttonPanel button:active {
  97. border-color: #510c00;
  98. background: #b17b72;
  99. color: #510c00;
  100. }
  101. .cesium-widget-errorPanel-more-details {
  102. text-decoration: underline;
  103. cursor: pointer;
  104. }
  105. .cesium-widget-errorPanel-more-details:hover {
  106. color: #2b0700;
  107. }