github.com/cilium/ebpf@v0.16.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 background: linear-gradient(120deg, #4051B5, 35%, #6AD6E4); 7 background-clip: text; 8 -webkit-background-clip: text; 9 -webkit-text-fill-color: transparent; 10 } 11 12 /* :progress-wrench: 13 Custom 'incomplete' admonition for sections that need work or maintenance. 14 Create blocks using '!!! incomplete'. 15 */ 16 :root { 17 --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>') 18 } 19 20 .md-typeset .admonition.incomplete, 21 .md-typeset details.incomplete { 22 border-color: rgb(255, 204, 77); 23 } 24 25 .md-typeset .incomplete>.admonition-title, 26 .md-typeset .incomplete>summary { 27 background-color: rgba(255, 204, 77, 0.1); 28 } 29 30 .md-typeset .incomplete>.admonition-title::before, 31 .md-typeset .incomplete>summary::before { 32 background-color: rgb(255, 204, 77); 33 -webkit-mask-image: var(--md-admonition-icon--incomplete); 34 mask-image: var(--md-admonition-icon--incomplete); 35 } 36 37 /* gp and go are the classes used for prompt and output in shell-session code 38 blocks. Prevent these from being highlighted as it hurts UX. 39 */ 40 .highlight .gp, 41 .highlight .go { 42 user-select: none; 43 }