20 lines
386 B
CSS
20 lines
386 B
CSS
.wp-block-quote {
|
|
border: none;
|
|
p {
|
|
@apply font-medium;
|
|
font-size: 1.2rem;
|
|
}
|
|
@apply relative pl-12;
|
|
&:before {
|
|
background-image: url('../resources/img/icons/cite-icon.svg');
|
|
@apply content-[''] block w-8 h-8 absolute top-0 left-0;
|
|
}
|
|
cite {
|
|
&:before {
|
|
@apply pr-2;
|
|
content: 'EXTRAIT';
|
|
@apply font-bold;
|
|
}
|
|
}
|
|
}
|