typeface.css (1130B)
1 :root { 2 font-family: Inter, sans-serif; 3 font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */ 4 } 5 @supports (font-variation-settings: normal) { 6 :root { font-family: InterVariable, sans-serif; } 7 } 8 9 .noto-sans-mono-<uniquifier> { 10 font-family: "Noto Sans Mono", monospace; 11 font-optical-sizing: auto; 12 font-weight: <weight>; 13 font-style: normal; 14 font-variation-settings: 15 "wdth" 100; 16 } 17 18 * { 19 font-family: 'Inter', 'Helvetica', sans-serif; 20 color: #ddd; 21 overflow: visible; 22 } 23 24 25 a { 26 text-decoration-style: dotted; 27 } 28 .mastodon { 29 display: none; 30 } 31 32 code > span > span > * , code > span > * , code > * { 33 background: #ffffff00; 34 font-family: 'Noto Sans Mono'; 35 font-size: 14px; 36 } 37 code { 38 background: #ffffff55; 39 font-family: 'Noto Sans Mono'; 40 font-size: 14px; 41 } 42 43 /* body { */ 44 /* background-color: #111; */ 45 /* color: #333; */ 46 /* line-height: 1.5; */ 47 /* max-width: 45rem; */ 48 /* padding: 1rem; */ 49 /* margin: 0 auto; */ 50 /* overflow: visible; */ 51 /* } */ 52 53 /* .content { */ 54 /* margin-bottom: 2rem; */ 55 /* } */ 56 57 img { 58 width: 100%; 59 } 60 img.rss { 61 width: 16px; 62 height: 16px; 63 }