40 lines
782 B
CSS
40 lines
782 B
CSS
.search-results-card {
|
|
@apply bg-white p-8 border border-primary;
|
|
&__title {
|
|
@apply !text-lg !font-normal !mb-2;
|
|
font-family: 'Nunito Sans', sans-serif !important;
|
|
line-height: 1.2;
|
|
}
|
|
&--inner-search {
|
|
@apply bg-transparent border-none px-0;
|
|
}
|
|
|
|
.content-meta {
|
|
}
|
|
&__type {
|
|
@apply inline-block mb-3 px-3 py-1 font-semibold;
|
|
@apply text-primary;
|
|
}
|
|
|
|
h2 {
|
|
@apply mb-4;
|
|
|
|
a {
|
|
@apply text-primary hover:underline;
|
|
}
|
|
}
|
|
|
|
&__link {
|
|
@apply inline-block mt-4 text-primary font-semibold;
|
|
@apply hover:underline;
|
|
}
|
|
|
|
&__parution-date {
|
|
@apply block text-lg font-normal text-primary !mb-4;
|
|
}
|
|
|
|
.search-highlight {
|
|
@apply text-primary bg-carhop-green-50 font-bold;
|
|
}
|
|
}
|