28 lines
526 B
CSS
28 lines
526 B
CSS
.footnote-reference {
|
|
color: unset;
|
|
cursor: pointer;
|
|
&:hover {
|
|
@apply underline underline-offset-8;
|
|
text-decoration-thickness: 1px;
|
|
&:after {
|
|
transform: translate(0px, -2px) scale(1.1);
|
|
|
|
z-index: 10;
|
|
transition: all 0.3s ease;
|
|
@apply nunito;
|
|
}
|
|
}
|
|
|
|
&:after {
|
|
transform: translate(0px, -2px) scale(1);
|
|
transition: all 0.3s ease;
|
|
@apply nunito;
|
|
}
|
|
|
|
.wp-block-pullquote & {
|
|
&:after {
|
|
transform: translate(0px, -6px);
|
|
}
|
|
}
|
|
}
|