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

feat: scrollable header when too wide

also condense some stuff

+4 -16
+4 -16
dev.css
··· 245 padding-bottom: 0; 246 } 247 248 - header nav ul { 249 - display: flex; 250 - list-style: none; 251 - padding: 0; 252 - } 253 - 254 - header nav ul li { 255 - margin: 0; 256 - display: flex; 257 - } 258 - 259 - header nav ul li:not(:first-child)::before { 260 - content: "•"; 261 - margin: 0 0.25em; 262 - } 263 - 264 footer > *:last-child { 265 margin-bottom: 0; 266 } 267 268 footer nav ul { 269 display: flex; 270 list-style: none; 271 padding: 0; 272 } 273 274 footer nav ul li { 275 margin: 0; 276 display: flex; 277 } 278 279 footer nav ul li:not(:first-child)::before { 280 content: "•"; 281 margin: 0 0.25em;
··· 245 padding-bottom: 0; 246 } 247 248 footer > *:last-child { 249 margin-bottom: 0; 250 } 251 252 + header nav ul, 253 footer nav ul { 254 display: flex; 255 + overflow-x: auto; 256 list-style: none; 257 padding: 0; 258 } 259 260 + header nav ul li, 261 footer nav ul li { 262 margin: 0; 263 display: flex; 264 } 265 266 + header nav ul li:not(:first-child)::before, 267 footer nav ul li:not(:first-child)::before { 268 content: "•"; 269 margin: 0 0.25em;