chore: highlight variation
This commit is contained in:
parent
3f94ea54bc
commit
8b6610e743
1 changed files with 19 additions and 0 deletions
|
@ -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);
|
||||
|
|
Reference in a new issue