_map.scss 522 B

12345678910111213141516171819202122232425262728293031
  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. .node-alert {
  11. -webkit-animation: blink 2s linear;
  12. -webkit-animation-iteration-count: infinite;
  13. animation: blink 2s linear;
  14. animation-iteration-count: infinite;
  15. }
  16. }
  17. @-webkit-keyframes blink {
  18. 0% { opacity: 1.0; }
  19. 80% { opacity: 1.0; }
  20. 90% { opacity: 0.0; }
  21. }
  22. @keyframes blink {
  23. 0% { opacity: 1.0; }
  24. 80% { opacity: 1.0; }
  25. 90% { opacity: 0.0; }
  26. }