@kq_npm/client_leaflet
Version:
KQGIS Client leaflet for Javascript
33 lines (30 loc) • 549 B
CSS
/*!
*
* kqgis_client_leaflet.(http://www.kqgeo.com/)
* Copyright© 2000 - 2021 KqGIS Software Co.Ltd
* license: Apache-2.0
* version: v8.5.8
*
*/
.scatterClass {
border: 3px solid red;
border-radius: 50%;
animation: anim 1s ease-out infinite;
box-shadow: 0px 0px 19px 3px #d11919;
}
@keyframes anim {
0% {
transform: scale(0);
opacity: 0;
}
50% {
opacity: 0.6;
}
100% {
transform: scale(1);
opacity: 0;
}
}
.test-default {
color: white;
}