lightweight, simple, classless CSS framework inspired by new.css devcss.devins.page
framework lightweight css classless stylesheet
17
fork

Configure Feed

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

at 16ba66b8bfbc5db9b019bb4ce076131af17d57d0 21 lines 549 B view raw
1/* header-oneline for dev.css v4, a lightweight CSS framework - https://github.com/intergrav/dev.css */ 2/* about: makes the header much more compact by sorting horizontally, good with header-sticky addon */ 3/* note: will hide most elements in header other than img, h1-6, nav, and button */ 4 5header * { 6 font-size: 1rem; 7 line-height: 1; 8 margin: 0; 9 padding: 0; 10 margin-bottom: 0 !important; 11} 12 13header { 14 display: flex; 15 gap: 1rem; 16 padding: 0.75rem calc(50vw - 50%); 17} 18 19header > *:not(img, h1, h2, h3, h4, h5, h6, nav, button) { 20 display: none; 21}