index.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. html, body, #web-bim-scene {
  2. width: 100%;
  3. height: 100%;
  4. margin: 0 0;
  5. border: none;
  6. }
  7. body > canvas {
  8. width: 100%;
  9. height: 100%;
  10. }
  11. @font-face {
  12. font-family: DejaVuSansMono, monospace, sans-serif;
  13. }
  14. * {
  15. font-family: bree serif, sans-serif;
  16. -webkit-font-smoothing: antialiased;
  17. }
  18. svg {
  19. fill: currentColor;
  20. stroke: currentColor;
  21. mask-size: cover;
  22. }
  23. /* 🌱🌱🌱🌱🌱🌱🌱🌱🌱🌱🌱🌱🌱分割 */
  24. .box {
  25. background-color: #ccc;
  26. width: 100%;
  27. position: absolute;
  28. z-index: 3;
  29. top: 0;
  30. left: 0;
  31. }
  32. button.active {
  33. color: #f00;
  34. }
  35. .btnList {
  36. display: inline;
  37. border: 1px solid red;
  38. }
  39. #container {
  40. width: 100%;
  41. height: 100%;
  42. /*background-image: url("/gis/static/images/bg.png");*/
  43. /*background: teal;*/
  44. background-position: center;
  45. background-size: cover;
  46. }
  47. #actions {
  48. width: 100%;
  49. height: 100%;
  50. background: transparent;
  51. pointer-events: none;
  52. position: absolute;
  53. top: 0;
  54. left: 0;
  55. }
  56. /*#actions > * {*/
  57. /* pointer-events: all;*/
  58. /*}*/
  59. .cesium-viewer {
  60. width: 100%;
  61. height: 100%;
  62. }
  63. #prepare {
  64. position: absolute;
  65. width: 100%;
  66. height: 100%;
  67. z-index: 3;
  68. background-color: white;
  69. display: flex;
  70. align-items: flex-start;
  71. justify-content: flex-start;
  72. flex-direction: column;
  73. transition: all 0.2s ease-in-out;
  74. background-image: linear-gradient(to bottom right, #9BBEB5, #37B9E9);
  75. /*background-image: url("./images/bg.png");*/
  76. /*background-repeat: no-repeat;*/
  77. /*background-size: cover;*/
  78. }
  79. #prepare label {
  80. margin-left: 1vw;
  81. }
  82. #prepare img {
  83. position: absolute;
  84. right: 0;
  85. top: 0;
  86. }
  87. #prepare div .finish {
  88. color: teal;
  89. font-weight: bold;
  90. display: none;
  91. }
  92. #prepare .info-panel {
  93. width: 100%;
  94. height: 100%;
  95. position: absolute;
  96. padding: 5vh 5vw;
  97. z-index: 2;
  98. box-sizing: border-box;
  99. display: flex;
  100. flex-direction: column;
  101. align-items: center;
  102. justify-content: flex-end;
  103. padding-bottom: 40vh;
  104. color: #B6B6B6;
  105. }
  106. #prepare .bg-panel {
  107. width: 100%;
  108. height: 100%;
  109. position: absolute;
  110. z-index: 1;
  111. box-sizing: border-box;
  112. }
  113. #canvas-bg {
  114. position: absolute;
  115. z-index: 1;
  116. }
  117. #container * {
  118. /*background-color: transparent !important;*/
  119. }
  120. .isLoading {
  121. animation: ani-demo-spin 1s linear infinite;
  122. }
  123. @keyframes ani-demo-spin {
  124. from {
  125. transform: rotate(0deg);
  126. }
  127. 50% {
  128. transform: rotate(180deg);
  129. }
  130. to {
  131. transform: rotate(360deg);
  132. }
  133. }
  134. #prepare.hide {
  135. animation: fade-out 1s;
  136. display: none;
  137. }
  138. @keyframes fade-out {
  139. 0% {
  140. opacity: 1
  141. }
  142. 100% {
  143. opacity: 0
  144. }
  145. }
  146. .maplibregl-control-container {
  147. /*display: none !important;*/
  148. }
  149. .site-tag-tpl {
  150. position: absolute;
  151. z-index: 1;
  152. top: 0;
  153. left: 0;
  154. height: fit-content;
  155. width: fit-content;
  156. /*background: teal;*/
  157. color: white;
  158. display: flex;
  159. flex-direction: column;
  160. align-items: center;
  161. justify-content: center;
  162. }
  163. .site-tag-tpl[rendertype='topLabel'] {
  164. flex-direction: row;
  165. }
  166. .site-tag-tpl[rendertype='topLabel'] .siteDataWrap {
  167. order: 2;
  168. }
  169. .site-tag-tpl[rendertype='topLabel'] .siteLabel {
  170. order: 1;
  171. }
  172. .site-tag-tpl > .siteLabel {
  173. white-space: nowrap;
  174. display: flex;
  175. align-items: center;
  176. justify-content: center;
  177. font-size: 16px;
  178. padding: 12px 8px;
  179. }
  180. .site-tag-tpl > .siteDataWrap {
  181. width: 48px;
  182. height: 32px;
  183. display: flex;
  184. flex-direction: row;
  185. overflow: hidden;
  186. align-items: center;
  187. justify-content: space-evenly;
  188. }
  189. .site-tag-tpl > .siteDataWrap > .o {
  190. flex-grow: 1;
  191. width: 100%;
  192. height: 100%;
  193. font-size: 10px;
  194. line-height: 1;
  195. display: flex;
  196. flex-direction: column;
  197. align-items: center;
  198. justify-content: space-around;
  199. }
  200. .site-tag-tpl > .siteDataWrap > .o.mid {
  201. height: 100%;
  202. width: 11px !important;
  203. flex-shrink: 0
  204. }
  205. .site-tag-tpl > .siteDataWrap > .o.mid > img {
  206. height: 100%;
  207. width: 11px;
  208. flex-shrink: 0;
  209. }
  210. .site-tag-tpl > .siteDataWrap > .o > .ct {
  211. height: 10px;
  212. line-height: 10px;
  213. font-size: 9px;
  214. }
  215. .maplibregl-control-container {
  216. display: none !important;
  217. }
  218. .lil-gui {
  219. display: none !important;
  220. }