refactor scss
This commit is contained in:
parent
8de28b903b
commit
343690b9bb
2 changed files with 28 additions and 28 deletions
27
scss/_map.scss
Normal file
27
scss/_map.scss
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
.stroke-first {
|
||||
paint-order: stroke;
|
||||
}
|
||||
|
||||
.map {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
.node-alert {
|
||||
-webkit-animation: blink 2s linear;
|
||||
-webkit-animation-iteration-count: infinite;
|
||||
animation: blink 2s linear;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes blink {
|
||||
0% { opacity: 1.0; }
|
||||
80% { opacity: 1.0; }
|
||||
90% { opacity: 0.0; }
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
0% { opacity: 1.0; }
|
||||
80% { opacity: 1.0; }
|
||||
90% { opacity: 0.0; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue