23 lines
306 B
CSS
23 lines
306 B
CSS
|
|
.line {
|
||
|
|
fill: none;
|
||
|
|
stroke: #009EDC;
|
||
|
|
stroke-width: 1px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.graph-card {
|
||
|
|
width: 80vw;
|
||
|
|
height: 80vh;
|
||
|
|
background-color: white;
|
||
|
|
margin: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.graph-title {
|
||
|
|
text-align: center;
|
||
|
|
font-weight: 600;
|
||
|
|
padding: 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title {
|
||
|
|
fill: teal;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|