tiny, simple, classless CSS framework inspired by new.css
devcss.devins.page
framework
lightweight
css
classless
stylesheet
1/* addon for dev.css v3, a classless CSS framework - https://github.com/intergrav/dev.css */
2/* about: makes the header sticky, always at the top of the screen */
3/* warn: if using with the header-sidebar addon, be sure to include this before it */
4/* warn: i do not recommend using this if your header is large. may affect usability */
5
6header {
7 position: sticky;
8 top: 0;
9}