<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media only screen and (max-width: 600px) {
    body {
      background-color: lightblue;
    }
}
  
pre &gt; code.sourceCode {
    font-family: monospace;
}

ul {
    list-style-type: square !important;
}

ul &gt; li::marker {
    color: var(--greenish);
}

ul &gt; li &gt; ul {
    list-style-type: none;
}

ul &gt; li &gt; ul &gt; li {
    padding-left: 2rem !important;
}

ul &gt; li &gt; ul &gt; li::marker {
    content: "â€”";
    color: var(--redish);
}

section a {
    color: var(--blueish) !important;
}

li:has(.indent) {
    position: relative;
}

.indent {
    position: absolute;
    left: 24rem;
}

/* .accent0 */

.sysred {
    color: var(--redish);
}

/* .accent1 */

.sysorange {
    color: var(--orangeish);
}

/* .accent2 */

.sysyellow {
    color: var(--yellowish);
}

/* .accent3 */

.sysgreen {
    color: var(--greenish);
}

/* .accent4 */

.systeal {
    color: var(--tealish);
}

/* .accent5 */

.sysblue {
    color: var(--blueish);
}

/* .accent6 */

.sysviolet {
    color: var(--violetish);
}

/* .accent7 */

.sysbrown {
    color: var(--brownish);
}

.crossout {
    position: relative;
}

.crossout::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'&gt;&lt;path d='M100 0 L0 100 ' stroke='red' stroke-width='1'/&gt;&lt;path d='M0 0 L100 100 ' stroke='red' stroke-width='1'/&gt;&lt;/svg&gt;");
    background-repeat:no-repeat;
    background-position:center center;
    background-size: 100% 100%, auto;
    z-index: 8;
    width: 100%;
    height: 100%;
    content: "";
}

.overlay {
    display: grid;
    grid-template-areas: "layer";
    align-items: center;
}

.overlay .layer {
    grid-area: layer;
}

.overlay .layer.top {
    z-index: 8;
}</pre></body></html>