Void Linux workstation powered by niri, Fish and NeoVim. Contains scripts, browser extensions, custom XBPS packages, and typst plugins. git.anhgelus.world/anhgelus/dotfiles
void niri fish neovim nvim vim dotfiles linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(extensions): better accessibility for tangled

+22 -4
+22 -4
extensions/stylus/tangled.org.css
··· 1 1 :root { 2 2 font-size: 16px; 3 3 4 + --gap-text: 0.75rem; 5 + 4 6 --tw-prose-invert-body: #e0e3e9; 5 7 } 6 8 ··· 9 11 } 10 12 11 13 code { 12 - font-family: monospace; 13 - font-size: 14px; 14 - line-height: 1.4em; 14 + font-family: monospace!important; 15 + font-size: 14px!important; 16 + line-height: 1.4em!important; 15 17 } 16 18 17 19 section article { ··· 20 22 margin: 0 auto; 21 23 22 24 font-size: 18px; 23 - line-height: 1.85em; 25 + line-height: 1.6em; 26 + } 27 + 28 + .prose :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) { 29 + margin: var(--gap-text) 0; 30 + } 31 + 32 + details[data-callout] { 33 + > summary { margin-bottom: var(--gap-text); } 34 + 35 + > div { 36 + display: flex; 37 + flex-direction: column; 38 + gap: var(--gap-text); 39 + 40 + p { margin: 0; } 41 + } 24 42 }