Spaces:
Running
Running
File size: 569 Bytes
8e3cd77 d72dafc 8e3cd77 d72dafc 8e3cd77 d72dafc 8e3cd77 d72dafc 8e3cd77 d72dafc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
.graph-container {
width: 100%;
aspect-ratio: 1/1;
border: 2px solid #e5e7eb;
border-radius: 0.5rem;
background-color: #f9fafb;
overflow: hidden;
}
.dot {
fill: #4f46e5;
stroke: white;
stroke-width: 2;
transition: all 0.3s ease;
}
.line {
stroke: #4f46e5;
stroke-width: 2;
fill: none;
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
}
.dot-label {
font-size: 12px;
fill: #6b7280;
text-anchor: middle;
font-weight: bold;
}
@keyframes dash {
to {
stroke-dashoffset: 0;
}
}
|