32 lines
565 B
SCSS
32 lines
565 B
SCSS
|
@media print {
|
||
|
* {
|
||
|
color: #000!important;
|
||
|
text-shadow: none!important;
|
||
|
background: transparent!important;
|
||
|
box-shadow: none!important;
|
||
|
}
|
||
|
}
|
||
|
.total_score {
|
||
|
fill: none;
|
||
|
stroke: #00f;
|
||
|
stroke-width: 2px;
|
||
|
}
|
||
|
.graph rect {
|
||
|
fill: none;
|
||
|
stroke: #000;
|
||
|
shape-rendering: crispEdges;
|
||
|
}
|
||
|
#graph .y line,
|
||
|
.graph .x line,
|
||
|
.graph .y_score line {
|
||
|
stroke: #ccc;
|
||
|
shape-rendering: crispEdges;
|
||
|
}
|
||
|
.graph .y_score line {
|
||
|
stroke: #ddd;
|
||
|
stroke-dasharray: 2, 2, 2, 2;
|
||
|
}
|
||
|
|
||
|
.graph svg{
|
||
|
background-color: #ebebeb;
|
||
|
}
|