_map.scss 900 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .stroke-first {
  2. paint-order: stroke;
  3. }
  4. .map {
  5. width: 100%;
  6. height: 100%;
  7. button.locate-user:after {
  8. content: '\f2a7';
  9. }
  10. button.add-layer:after {
  11. content: '\f217';
  12. }
  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. }