g1-stats/tpl/css/charts.css

42 lines
543 B
CSS
Raw Normal View History

#charts {
width: 98%;
margin-left: 0px;
2020-09-28 13:27:25 +02:00
overflow-x: scroll;
2020-10-01 05:06:44 +02:00
/* display: none; */
}
2020-10-01 05:06:44 +02:00
.chartWrapper {
position: relative;
background-color: #DFCFBE;
border-radius: 30px;
padding: 10px;
}
.chartWrapper > canvas {
position: absolute;
left: 0;
top: 0;
pointer-events:none;
}
.chartAreaWrapper {
overflow-x: scroll;
position: relative;
width: 100%;
height: 400px;
}
.chartAreaWrapper2 {
position: relative;
height: 300px;
width: 3000px;
}
2020-10-01 05:06:44 +02:00
@media only screen and (max-width: 1100px) {
#charts {
width: 95%;
}
}