gisviewer-vue3-arcgis
Version:
在应用中引入私服的包, 项目根目录下 新建文件 .npmrc 在 .npmrc 中对包源进行配置:
52 lines (51 loc) • 890 B
CSS
@import url('@arcgis/core/assets/esri/themes/light/main.css');
.gis-viewer {
position: relative;
width: 100%;
height: 100%;
}
.gis-viewer-main {
width: 100%;
height: 100%;
}
.esri-view .esri-view-surface:focus::after {
outline: none ;
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.signal-countdown-panel {
position: absolute;
display: flex;
flex-direction: row;
padding: 0px;
margin: 0px;
}
.signal-countdown-container {
margin: 0 1px;
padding: 0px;
background-color: rgba(0, 0, 0, 0.9);
border-style: solid;
border-color: turquoise;
border-width: 2px;
border-radius: 5px;
color: white;
width: 40px;
height: 60px;
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
}
.signal-countdown-number {
font: 28px Digital;
height: 34px;
}