chore: highlight variation

This commit is contained in:
Cory Dransfeldt 2024-03-17 16:06:18 -07:00
parent 3f94ea54bc
commit 8b6610e743
No known key found for this signature in database

View file

@ -280,10 +280,29 @@ footer nav:last-child span:not(.active) {
color: var(--color-lightest);
background-color: var(--accent-color);
padding: var(--sizing-xs);
}
p .highlight-text:nth-child(even) {
-webkit-clip-path: polygon(2px 0px,99.5% 0,100% 93%,0px 100%);
clip-path: polygon(2px 0px,99.5% 0,100% 93%,0px 100%);
}
p .highlight-text:nth-child(odd) {
-webkit-clip-path: polygon(2px 0px,99.5% 0,98.5% 95%,0px 100%);
clip-path: polygon(2px 0px,99.5% 0,98.5% 95%,0px 100%);
}
p .highlight-text:first-of-type {
-webkit-clip-path: polygon(1px 2px,99.5% 0,100% 95%,0px 100%);
clip-path: polygon(1px 2px,99.5% 0,100% 95%,0px 100%);
}
p .highlight-text:last-of-type {
-webkit-clip-path: polygon(0 0,100% 0,100% 90%,0px 95%);
clip-path: polygon(0 0,100% 0,100% 90%,0px 95%);
}
code {
padding: var(--sizing-xs);
color: var(--text-color-inverted);