hopglass/scss/_map.scss

60 lines
863 B
SCSS
Raw Permalink Normal View History

2015-04-02 04:34:02 +02:00
.stroke-first {
paint-order: stroke;
}
2015-11-09 10:01:20 +01:00
.pick-coordinates {
cursor: crosshair;
}
2015-04-02 04:34:02 +02:00
.map {
width: 100%;
height: 100%;
.node-alert {
2015-04-02 04:34:02 +02:00
-webkit-animation: blink 2s linear;
-webkit-animation-iteration-count: infinite;
animation: blink 2s linear;
animation-iteration-count: infinite;
}
2015-04-12 12:23:12 +02:00
.leaflet-top button.leaflet-control {
margin-top: $buttondistance;
}
.leaflet-bottom button.leaflet-control {
margin-bottom: $buttondistance;
}
.leaflet-left button.leaflet-control {
margin-left: $buttondistance;
}
.leaflet-right button.leaflet-control {
margin-right: $buttondistance;
}
2015-04-02 04:34:02 +02:00
}
@-webkit-keyframes blink {
0% {
opacity: 1.0;
}
80% {
opacity: 1.0;
}
90% {
opacity: 0.0;
}
2015-04-02 04:34:02 +02:00
}
@keyframes blink {
0% {
opacity: 1.0;
}
80% {
opacity: 1.0;
}
90% {
opacity: 0.0;
}
2015-04-02 04:34:02 +02:00
}