<style>
:root {
counter-reset: example question challenge;
}
mark.name,
mark.example,
mark.question,
mark.answer,
mark.challenge,
mark.response {
color: inherit;
background: inherit;
}
mark.name::before,
mark.question::before,
mark.answer::before,
mark.challenge::before,
mark.response::before {
font-weight: bold;
background: yellow;
border-radius: 1rem;
padding: 0.0675rem 0.375rem;
margin-left: -0.375rem;
}
mark.name::before {
content: "Name:";
}
mark.example::before {
counter-increment: example;
content: "Example " counter(example) ". ";
}
mark.question::before {
counter-increment: question;
content: "Question " counter(question) ":";
}
mark.answer::before {
content: "Answer " counter(question) ":";
}
mark.challenge::before {
counter-increment: challenge;
content: "Challenge " counter(challenge, upper-alpha) ":";
}
mark.response::before {
content: "Response " counter(challenge, upper-alpha) ":";
}
mark.name::after,
mark.question::after,
mark.answer::after,
mark.challenge::after,
mark.response::after {
content: " ";
}
[data-tippy-root] .tippy-box {
border-radius: 0;
}
[data-tippy-root] .tippy-content {
font: 13px/1.2 system-ui, var(--sans-serif);
padding: 8px;
}
[data-tippy-root] table {
margin: 0;
}
[data-tippy-root] tr:not(:last-child) {
border-bottom: none;
}
[data-tippy-root] th,
[data-tippy-root] td {
color: white;
text-align: center;
}
svg[class^="plot"] {
overflow: visible;
}
[aria-label="tip"] text {
fill: white;
}
</style>