diff --git a/src/assets/styles/index.css b/src/assets/styles/index.css index fdf03e7a..5af3527a 100644 --- a/src/assets/styles/index.css +++ b/src/assets/styles/index.css @@ -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);