123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .stroke-first {
- paint-order: stroke;
- }
- .map {
- width: 100%;
- height: 100%;
- button.locate-user:after {
- content: '\f2a7';
- }
- button.add-layer:after {
- content: '\f217';
- }
- .node-alert {
- -webkit-animation: blink 2s linear;
- -webkit-animation-iteration-count: infinite;
- animation: blink 2s linear;
- animation-iteration-count: infinite;
- }
- .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;
- }
- }
- @-webkit-keyframes blink {
- 0% { opacity: 1.0; }
- 80% { opacity: 1.0; }
- 90% { opacity: 0.0; }
- }
- @keyframes blink {
- 0% { opacity: 1.0; }
- 80% { opacity: 1.0; }
- 90% { opacity: 0.0; }
- }
|