Added new styles to route analyzer
This commit is contained in:
parent
c58ccfe693
commit
7cd5d9c3a9
|
@ -4299,4 +4299,28 @@ div#footer_help{
|
|||
.pagination_show_more{
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.dashed{
|
||||
stroke-dasharray: 10;
|
||||
|
||||
}
|
||||
.path {
|
||||
stroke-dasharray: 500;
|
||||
stroke-dashoffset: 500;
|
||||
animation: dash 15s linear;
|
||||
}
|
||||
|
||||
@keyframes dash {
|
||||
from {
|
||||
stroke-dashoffset: 500;
|
||||
}
|
||||
to {
|
||||
stroke-dashoffset: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.route {
|
||||
fill: none;
|
||||
transition: all 4s ease-in-out;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue