77 lines
1.5 KiB
CSS
77 lines
1.5 KiB
CSS
.statistiques-collections {
|
|
.statistiques-collections__toolbar {
|
|
@apply hidden lg:block;
|
|
|
|
.tablist {
|
|
@apply gap-7;
|
|
}
|
|
}
|
|
|
|
.amount-container {
|
|
@apply border border-primary h-24 lg:h-40 w-full relative flex items-center justify-start gap-12 bg-carhop-green-50;
|
|
|
|
.percentage-label {
|
|
@apply !mb-0 text-xl font-semibold;
|
|
}
|
|
}
|
|
|
|
.amount-container,
|
|
.amount-container-all {
|
|
min-height: 10rem;
|
|
@media (max-width: 768px) {
|
|
min-height: unset;
|
|
}
|
|
}
|
|
|
|
.amount-container-all {
|
|
@apply bg-primary text-white p-8;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
p {
|
|
@apply text-white !mb-0;
|
|
}
|
|
p.total-documents-count {
|
|
@apply text-4xl fjalla uppercase pb-2;
|
|
font-weight: 200 !important ;
|
|
}
|
|
}
|
|
|
|
.percentage-bar {
|
|
@apply bg-primary text-white flex items-center justify-center h-full;
|
|
width: 0;
|
|
transition: width 1.3s ease-in-out;
|
|
}
|
|
|
|
&__stats-items {
|
|
@apply flex flex-col gap-8 pt-8;
|
|
|
|
.heading {
|
|
@apply flex items-center justify-between gap-2 pb-2;
|
|
}
|
|
|
|
li {
|
|
list-style: none !important;
|
|
}
|
|
}
|
|
|
|
&__stat-item {
|
|
.total-documents-count {
|
|
@apply !mb-0;
|
|
}
|
|
&[data-active='false'] {
|
|
display: block;
|
|
@screen lg {
|
|
display: none;
|
|
}
|
|
}
|
|
&[data-active='true'] {
|
|
display: block;
|
|
}
|
|
|
|
.stat-item-description {
|
|
@apply pt-8;
|
|
}
|
|
}
|
|
}
|