_map.scss 956 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. button.show-coords:after {
  14. content: '\f2a6';
  15. }
  16. .node-alert {
  17. -webkit-animation: blink 2s linear;
  18. -webkit-animation-iteration-count: infinite;
  19. animation: blink 2s linear;
  20. animation-iteration-count: infinite;
  21. }
  22. .leaflet-top button.leaflet-control {
  23. margin-top: $buttondistance;
  24. }
  25. .leaflet-bottom button.leaflet-control {
  26. margin-bottom: $buttondistance;
  27. }
  28. .leaflet-left button.leaflet-control {
  29. margin-left: $buttondistance;
  30. }
  31. .leaflet-right button.leaflet-control {
  32. margin-right: $buttondistance;
  33. }
  34. }
  35. @-webkit-keyframes blink {
  36. 0% { opacity: 1.0; }
  37. 80% { opacity: 1.0; }
  38. 90% { opacity: 0.0; }
  39. }
  40. @keyframes blink {
  41. 0% { opacity: 1.0; }
  42. 80% { opacity: 1.0; }
  43. 90% { opacity: 0.0; }
  44. }