| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- html, body, #web-bim-scene {
- width: 100%;
- height: 100%;
- margin: 0 0;
- border: none;
- }
- body > canvas {
- width: 100%;
- height: 100%;
- }
- @font-face {
- font-family: DejaVuSansMono, monospace, sans-serif;
- }
- * {
- font-family: bree serif, sans-serif;
- -webkit-font-smoothing: antialiased;
- }
- svg {
- fill: currentColor;
- stroke: currentColor;
- mask-size: cover;
- }
- /* 🌱🌱🌱🌱🌱🌱🌱🌱🌱🌱🌱🌱🌱分割 */
- .box {
- background-color: #ccc;
- width: 100%;
- position: absolute;
- z-index: 3;
- top: 0;
- left: 0;
- }
- button.active {
- color: #f00;
- }
- .btnList {
- display: inline;
- border: 1px solid red;
- }
- #container {
- width: 100%;
- height: 100%;
- /*background-image: url("/gis/static/images/bg.png");*/
- /*background: teal;*/
- background-position: center;
- background-size: cover;
- }
- #actions {
- width: 100%;
- height: 100%;
- background: transparent;
- pointer-events: none;
- position: absolute;
- top: 0;
- left: 0;
- }
- /*#actions > * {*/
- /* pointer-events: all;*/
- /*}*/
- .cesium-viewer {
- width: 100%;
- height: 100%;
- }
- #prepare {
- position: absolute;
- width: 100%;
- height: 100%;
- z-index: 3;
- background-color: white;
- display: flex;
- align-items: flex-start;
- justify-content: flex-start;
- flex-direction: column;
- transition: all 0.2s ease-in-out;
- background-image: linear-gradient(to bottom right, #9BBEB5, #37B9E9);
- /*background-image: url("./images/bg.png");*/
- /*background-repeat: no-repeat;*/
- /*background-size: cover;*/
- }
- #prepare label {
- margin-left: 1vw;
- }
- #prepare img {
- position: absolute;
- right: 0;
- top: 0;
- }
- #prepare div .finish {
- color: teal;
- font-weight: bold;
- display: none;
- }
- #prepare .info-panel {
- width: 100%;
- height: 100%;
- position: absolute;
- padding: 5vh 5vw;
- z-index: 2;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-end;
- padding-bottom: 40vh;
- color: #B6B6B6;
- }
- #prepare .bg-panel {
- width: 100%;
- height: 100%;
- position: absolute;
- z-index: 1;
- box-sizing: border-box;
- }
- #canvas-bg {
- position: absolute;
- z-index: 1;
- }
- #container * {
- /*background-color: transparent !important;*/
- }
- .isLoading {
- animation: ani-demo-spin 1s linear infinite;
- }
- @keyframes ani-demo-spin {
- from {
- transform: rotate(0deg);
- }
- 50% {
- transform: rotate(180deg);
- }
- to {
- transform: rotate(360deg);
- }
- }
- #prepare.hide {
- animation: fade-out 1s;
- display: none;
- }
- @keyframes fade-out {
- 0% {
- opacity: 1
- }
- 100% {
- opacity: 0
- }
- }
- .maplibregl-control-container {
- /*display: none !important;*/
- }
- .site-tag-tpl {
- position: absolute;
- z-index: 1;
- top: 0;
- left: 0;
- height: fit-content;
- width: fit-content;
- /*background: teal;*/
- color: white;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .site-tag-tpl[rendertype='topLabel'] {
- flex-direction: row;
- }
- .site-tag-tpl[rendertype='topLabel'] .siteDataWrap {
- order: 2;
- }
- .site-tag-tpl[rendertype='topLabel'] .siteLabel {
- order: 1;
- }
- .site-tag-tpl > .siteLabel {
- white-space: nowrap;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 16px;
- padding: 12px 8px;
- }
- .site-tag-tpl > .siteDataWrap {
- width: 48px;
- height: 32px;
- display: flex;
- flex-direction: row;
- overflow: hidden;
- align-items: center;
- justify-content: space-evenly;
- }
- .site-tag-tpl > .siteDataWrap > .o {
- flex-grow: 1;
- width: 100%;
- height: 100%;
- font-size: 10px;
- line-height: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- }
- .site-tag-tpl > .siteDataWrap > .o.mid {
- height: 100%;
- width: 11px !important;
- flex-shrink: 0
- }
- .site-tag-tpl > .siteDataWrap > .o.mid > img {
- height: 100%;
- width: 11px;
- flex-shrink: 0;
- }
- .site-tag-tpl > .siteDataWrap > .o > .ct {
- height: 10px;
- line-height: 10px;
- font-size: 9px;
- }
- .maplibregl-control-container {
- display: none !important;
- }
- .lil-gui {
- display: none !important;
- }
|