Added new styles to route analyzer

This commit is contained in:
Arturo Gonzalez 2017-10-03 15:20:35 +02:00
parent c58ccfe693
commit 7cd5d9c3a9
1 changed files with 25 additions and 1 deletions

View File

@ -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;
}