Metiers_du_patrimoine_theme/template-components/artisans/card-artisans.css
Antoine M c035793073
All checks were successful
continuous-integration/drone/push Build is passing
FEAT Added new GSM pictogram SVG and updated CSS for GSM card styling
2025-04-09 11:51:05 +02:00

84 lines
2.4 KiB
CSS

.card-artisans {
@apply bg-white rounded-lg shadowed;
&__thumbnail {
@apply w-full h-32 lg:h-48 object-cover rounded-t-xl;
}
&__inner {
@apply p-6;
}
&__title {
@apply !text-2xl font-bold text-patrimoine-sante-securite !my-0;
}
&__team-members {
@apply font-bold !my-0;
}
&__taxonomy-tags {
@apply flex flex-wrap gap-2 mt-4;
.taxonomy-tag {
@apply bg-patrimoine-sante-securite-light text-patrimoine-sante-securite rounded-lg text-sm px-3 py-1;
}
}
&__contact-details-title {
@apply uppercase !font-medium text-neutral-400 !mb-3 !text-sm;
}
&__adresse {
@apply font-normal underline-offset-4 inline-flex !mt-0 w-full;
&:before {
@apply inline-flex mr-3 h-6 w-6 bg-center bg-contain bg-no-repeat;
content: '';
background-image: url('../resources/img/pictogrammes/Homegrade_repertoire-adresse.svg');
}
}
&__gsm,
&__phone {
@apply font-semibold underline-offset-4 inline-flex w-full;
&:before {
@apply inline-flex mr-3 h-6 w-6 bg-center bg-contain bg-no-repeat;
content: '';
background-image: url('../resources/img/pictogrammes/Homegrade_repertoire-telephone.svg');
}
}
&__gsm {
&:after {
background-image: url('../resources/img/pictogrammes/Homegrade_repertoire-gsm.svg');
}
}
&__fax {
@apply font-semibold underline-offset-4 inline-flex w-full;
&:before {
@apply inline-flex mr-3 h-6 w-6 bg-center bg-contain bg-no-repeat;
content: '';
background-image: url('../resources/img/pictogrammes/Homegrade_repertoire-fax.svg');
}
}
&__email {
@apply text-primary underline font-semibold underline-offset-4 inline-flex w-full;
&:before {
@apply inline-flex mr-3 h-6 w-6 bg-center bg-contain bg-no-repeat;
content: '';
background-image: url('../resources/img/pictogrammes/Homegrade_repertoire-mail.svg');
}
}
&__website {
@apply text-primary underline font-semibold underline-offset-4 !flex w-full;
&:before {
@apply inline-flex mr-3 h-6 w-6 bg-center bg-contain bg-no-repeat;
content: '';
background-image: url('../resources/img/pictogrammes/Homegrade_repertoire-site.svg');
}
&:after {
@apply !transform-none;
}
}
&__vat-number {
@apply !mb-0;
}
.cta--read-more {
@apply mt-6;
}
}