website/scss/_ntp.scss

31 lines
597 B
SCSS
Raw Normal View History

2020-10-13 17:11:32 +02:00
@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;
}
.y line, .x line, .y_score line {
stroke: #ccc;
shape-rendering: crispEdges;
}
.y_score line {
stroke: #ddd;
stroke-dasharray: 2, 2, 2, 2;
}
svg{
background-color: #ebebeb;
}
2020-10-13 17:11:32 +02:00
}