philomena/assets/css/views/statistics.css

46 lines
711 B
CSS
Raw Normal View History

2023-11-23 17:07:49 +01:00
.statistics {
display: flex;
2024-06-03 23:07:10 +02:00
flex-flow: column;
gap: var(--padding-small);
2023-11-23 17:07:49 +01:00
}
.statistics__statistic {
2024-06-03 23:07:10 +02:00
display: flex;
flex-flow: column;
2023-11-23 17:07:49 +01:00
}
.sparkline {
2024-06-03 23:07:10 +02:00
background: var(--primary-muted-color);
border-radius: var(--border-radius-inner);
2023-11-23 17:07:49 +01:00
display: flex;
2024-05-31 20:07:00 +02:00
height: var(--padding-large);
2024-06-03 23:07:10 +02:00
padding: var(--padding-small);
2024-05-31 20:07:00 +02:00
overflow: hidden;
}
.sparkline svg {
overflow: visible;
2023-11-23 17:07:49 +01:00
}
.barline__bar {
2024-05-31 20:07:00 +02:00
fill: var(--primary-link-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
}
2024-05-31 20:07:00 +02:00
.barline__dot {
fill: var(--primary-border-color);
stroke: var(--link-color);
stroke-width: 1px;
}
.barline__dot:hover {
fill: var(--danger-color);
}
.barline__dot[cy="21.25"] {
display: none;
}