2023-11-23 17:07:49 +01:00
|
|
|
.statistics {
|
2024-04-30 12:16:09 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-04-17 16:52:50 +02:00
|
|
|
border: 1.5px solid var(--secondary-color);
|
|
|
|
border-radius: var(--border-radius-inner);
|
|
|
|
overflow: hidden;
|
2023-11-23 17:07:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.statistics__statistic {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 15% 15% auto;
|
|
|
|
background: var(--secondary-color);
|
|
|
|
}
|
|
|
|
|
2024-04-30 20:38:28 +02:00
|
|
|
@mixin even-odd statistics__statistic;
|
|
|
|
|
2023-11-23 17:07:49 +01:00
|
|
|
.statistics__column {
|
|
|
|
text-align: center;
|
|
|
|
padding: var(--padding-small);
|
|
|
|
}
|
|
|
|
|
|
|
|
.sparkline {
|
|
|
|
border-bottom: 1px solid var(--primary-border-color);
|
|
|
|
display: flex;
|
|
|
|
height: var(--padding-normal);
|
|
|
|
}
|
|
|
|
|
|
|
|
.barline__bar {
|
|
|
|
fill: var(--primary-border-color);
|
2024-04-30 20:38:28 +02:00
|
|
|
}
|
2023-11-23 17:07:49 +01:00
|
|
|
|
2024-04-30 20:38:28 +02:00
|
|
|
.barline__bar:hover {
|
|
|
|
fill: var(--danger-color);
|
2023-11-23 17:07:49 +01:00
|
|
|
}
|