_map.scss 884 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .stroke-first {
  2. paint-order: stroke;
  3. }
  4. .pick-coordinates {
  5. cursor: crosshair;
  6. }
  7. button.show-coords:after {
  8. content: '\f2a6';
  9. }
  10. .map {
  11. width: 100%;
  12. height: 100%;
  13. .node-alert {
  14. -webkit-animation: blink 2s linear;
  15. -webkit-animation-iteration-count: infinite;
  16. animation: blink 2s linear;
  17. animation-iteration-count: infinite;
  18. }
  19. .leaflet-top button.leaflet-control {
  20. margin-top: $buttondistance;
  21. }
  22. .leaflet-bottom button.leaflet-control {
  23. margin-bottom: $buttondistance;
  24. }
  25. .leaflet-left button.leaflet-control {
  26. margin-left: $buttondistance;
  27. }
  28. .leaflet-right button.leaflet-control {
  29. margin-right: $buttondistance;
  30. }
  31. }
  32. @-webkit-keyframes blink {
  33. 0% { opacity: 1.0; }
  34. 80% { opacity: 1.0; }
  35. 90% { opacity: 0.0; }
  36. }
  37. @keyframes blink {
  38. 0% { opacity: 1.0; }
  39. 80% { opacity: 1.0; }
  40. 90% { opacity: 0.0; }
  41. }