carhop__carhop-theme__DEV/resources/css/components/content-meta.css

43 lines
906 B
CSS

.content-meta {
@apply flex items-end gap-6 mb-4 text-primary;
&__type {
@apply font-bold text-lg flex items-center gap-2;
&:before {
@apply content-[''] mr-2 h-6 w-6 inline-block;
}
&--revues:before,
&--revue:before {
@apply rounded-full bg-carhop-orange-400;
}
&--articles:before,
&--article:before {
@apply w-6 bg-carhop-purple-300 -rotate-45;
}
}
&__reading-time {
line-height: 27px;
}
}
.content-meta {
@apply flex flex-wrap !items-center justify-between gap-2;
&__revue-issue {
@apply !px-3 !py-2 font-semibold h-fit;
@apply bg-carhop-green-700 text-white;
&--green {
@apply bg-carhop-green-700 !text-white;
}
&--white {
@apply bg-white !text-carhop-green-700;
}
/* &--primary {
@apply bg-carhop-green-700 text-white;
} */
}
}