github.com/cilium/ebpf@v0.15.0/docs/ebpf/stylesheets/extra.css (about)

     1  /* Tagline on landing page. */
     2  .tagline {
     3    font-size: 3em;
     4    font-weight: 900;
     5    letter-spacing: -0.5px;
     6    line-height: 1;
     7    background: linear-gradient(120deg, #4051B5, 35%, #6AD6E4);
     8    background-clip: text;
     9    -webkit-background-clip: text;
    10    -webkit-text-fill-color: transparent;
    11  }
    12  
    13  /* :progress-wrench:
    14     Custom 'incomplete' admonition for sections that need work or maintenance.
    15     Create blocks using '!!! incomplete'.
    16  */
    17  :root {
    18    --md-admonition-icon--incomplete: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.03v2.02c4.39.54 7.5 4.53 6.96 8.92-.46 3.64-3.32 6.53-6.96 6.96v2c5.5-.55 9.5-5.43 8.95-10.93-.45-4.75-4.22-8.5-8.95-8.97m-2 .03c-1.95.19-3.81.94-5.33 2.2L7.1 5.74c1.12-.9 2.47-1.48 3.9-1.68v-2M4.26 5.67A9.885 9.885 0 0 0 2.05 11h2c.19-1.42.75-2.77 1.64-3.9L4.26 5.67M2.06 13c.2 1.96.97 3.81 2.21 5.33l1.42-1.43A8.002 8.002 0 0 1 4.06 13h-2m5.04 5.37-1.43 1.37A9.994 9.994 0 0 0 11 22v-2a8.002 8.002 0 0 1-3.9-1.63m9.72-3.18-4.11-4.11c.41-1.04.18-2.26-.68-3.11-.9-.91-2.25-1.09-3.34-.59l1.94 1.94-1.35 1.36-1.99-1.95c-.54 1.09-.29 2.44.59 3.35.86.86 2.08 1.08 3.12.68l4.11 4.1c.18.19.45.19.63 0l1.04-1.03c.22-.18.22-.5.04-.64Z"/></svg>')
    19  }
    20  
    21  .md-typeset .admonition.incomplete,
    22  .md-typeset details.incomplete {
    23    border-color: rgb(255, 204, 77);
    24  }
    25  
    26  .md-typeset .incomplete>.admonition-title,
    27  .md-typeset .incomplete>summary {
    28    background-color: rgba(255, 204, 77, 0.1);
    29  }
    30  
    31  .md-typeset .incomplete>.admonition-title::before,
    32  .md-typeset .incomplete>summary::before {
    33    background-color: rgb(255, 204, 77);
    34    -webkit-mask-image: var(--md-admonition-icon--incomplete);
    35    mask-image: var(--md-admonition-icon--incomplete);
    36  }
    37  
    38  /* gp and go are the classes used for prompt and output in shell-session code
    39     blocks. Prevent these from being highlighted as it hurts UX.
    40  */
    41  .highlight .gp,
    42  .highlight .go {
    43    user-select: none;
    44  }