_map.scss 790 B

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