website/scss/_ntp.scss

37 lines
737 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;
}
2021-01-20 22:32:36 +01:00
@media only screen and (max-width: $mobile-max-width){
svg {
width: 100%;
height: auto;
}
}
2020-10-13 17:11:32 +02:00
}