WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at atb-43-admin-members-page 58 lines 578 B view raw
1/* reset.css — minimal normalize for atBB */ 2 3*, 4*::before, 5*::after { 6 box-sizing: border-box; 7 margin: 0; 8 padding: 0; 9} 10 11html { 12 -webkit-text-size-adjust: 100%; 13 tab-size: 4; 14} 15 16body { 17 min-height: 100vh; 18 text-rendering: optimizeSpeed; 19 line-height: 1; 20} 21 22img, 23svg, 24video, 25canvas, 26audio, 27iframe, 28embed, 29object { 30 display: block; 31 max-width: 100%; 32} 33 34input, 35button, 36textarea, 37select { 38 font: inherit; 39} 40 41p, 42h1, 43h2, 44h3, 45h4, 46h5, 47h6 { 48 overflow-wrap: break-word; 49} 50 51ul[role="list"], 52ol[role="list"] { 53 list-style: none; 54} 55 56a { 57 text-decoration-skip-ink: auto; 58}