├── .gitignore ├── .vscode └── settings.json ├── HTML only ├── link.txt └── snippet.txt ├── README.md ├── awsm.css ├── link.txt └── snippet.txt ├── bahunya ├── link.txt └── snippet.txt ├── bamboo ├── link.txt └── snippet.txt ├── bootstrap ├── link.txt └── snippet.txt ├── evenbettermotherfucking ├── link.txt └── snippet.txt ├── holiday.css ├── link.txt └── snippet.txt ├── iconfinder_bed_415896.png ├── iconfinder_bed_415896.svg ├── index.html ├── kacit ├── link.txt └── snippet.txt ├── marx ├── link.txt └── snippet.txt ├── meyer ├── link.txt └── snippet.txt ├── minicss ├── link.txt └── snippet.txt ├── no-class ├── link.txt └── snippet.txt ├── pico.css ├── link.txt └── snippet.txt ├── rebuild.py ├── sakura-vader ├── link.txt └── snippet.txt ├── sakura ├── link.txt └── snippet.txt ├── simple.css ├── link.txt └── snippet.txt ├── snippet.txt ├── stylize.css ├── link.txt └── snippet.txt ├── tacit ├── link.txt └── snippet.txt ├── thebestmotherfucking ├── link.txt └── snippet.txt ├── tufte ├── link.txt └── snippet.txt ├── vanillacss ├── link.txt └── snippet.txt ├── w3c-chocolate ├── link.txt └── snippet.txt ├── w3c-traditional ├── link.txt └── snippet.txt ├── water.css-dark ├── link.txt └── snippet.txt ├── water.css-light ├── link.txt └── snippet.txt ├── writ ├── link.txt └── snippet.txt └── yorha ├── link.txt └── snippet.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /*/index.html 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": false 3 | } -------------------------------------------------------------------------------- /HTML only/link.txt: -------------------------------------------------------------------------------- 1 | / -------------------------------------------------------------------------------- /HTML only/snippet.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/README.md -------------------------------------------------------------------------------- /awsm.css/link.txt: -------------------------------------------------------------------------------- 1 | https://igoradamenko.github.io/awsm.css/ 2 | -------------------------------------------------------------------------------- /awsm.css/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/awsm.css/snippet.txt -------------------------------------------------------------------------------- /bahunya/link.txt: -------------------------------------------------------------------------------- 1 | https://kimeiga.github.io/bahunya/ -------------------------------------------------------------------------------- /bahunya/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/bahunya/snippet.txt -------------------------------------------------------------------------------- /bamboo/link.txt: -------------------------------------------------------------------------------- 1 | https://github.com/rilwis/bamboo -------------------------------------------------------------------------------- /bamboo/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/bamboo/snippet.txt -------------------------------------------------------------------------------- /bootstrap/link.txt: -------------------------------------------------------------------------------- 1 | https://getbootstrap.com -------------------------------------------------------------------------------- /bootstrap/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/bootstrap/snippet.txt -------------------------------------------------------------------------------- /evenbettermotherfucking/link.txt: -------------------------------------------------------------------------------- 1 | https://evenbettermotherfucking.website/ -------------------------------------------------------------------------------- /evenbettermotherfucking/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/evenbettermotherfucking/snippet.txt -------------------------------------------------------------------------------- /holiday.css/link.txt: -------------------------------------------------------------------------------- 1 | https://github.com/EvgenyOrekhov/holiday.css 2 | -------------------------------------------------------------------------------- /holiday.css/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/holiday.css/snippet.txt -------------------------------------------------------------------------------- /iconfinder_bed_415896.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/iconfinder_bed_415896.png -------------------------------------------------------------------------------- /iconfinder_bed_415896.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/iconfinder_bed_415896.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/index.html -------------------------------------------------------------------------------- /kacit/link.txt: -------------------------------------------------------------------------------- 1 | https://kimeiga.github.io/kacit/ 2 | -------------------------------------------------------------------------------- /kacit/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/kacit/snippet.txt -------------------------------------------------------------------------------- /marx/link.txt: -------------------------------------------------------------------------------- 1 | https://mblode.github.io/marx/ -------------------------------------------------------------------------------- /marx/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/marx/snippet.txt -------------------------------------------------------------------------------- /meyer/link.txt: -------------------------------------------------------------------------------- 1 | https://meyerweb.com/eric/tools/css/reset/ -------------------------------------------------------------------------------- /meyer/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/meyer/snippet.txt -------------------------------------------------------------------------------- /minicss/link.txt: -------------------------------------------------------------------------------- 1 | https://minicss.org/ -------------------------------------------------------------------------------- /minicss/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/minicss/snippet.txt -------------------------------------------------------------------------------- /no-class/link.txt: -------------------------------------------------------------------------------- 1 | https://davidpaulsson.github.io/no-class/ 2 | -------------------------------------------------------------------------------- /no-class/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/no-class/snippet.txt -------------------------------------------------------------------------------- /pico.css/link.txt: -------------------------------------------------------------------------------- 1 | https://picocss.com/ 2 | -------------------------------------------------------------------------------- /pico.css/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/pico.css/snippet.txt -------------------------------------------------------------------------------- /rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/rebuild.py -------------------------------------------------------------------------------- /sakura-vader/link.txt: -------------------------------------------------------------------------------- 1 | https://oxal.org/projects/sakura/ -------------------------------------------------------------------------------- /sakura-vader/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/sakura-vader/snippet.txt -------------------------------------------------------------------------------- /sakura/link.txt: -------------------------------------------------------------------------------- 1 | https://oxal.org/projects/sakura/ -------------------------------------------------------------------------------- /sakura/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/sakura/snippet.txt -------------------------------------------------------------------------------- /simple.css/link.txt: -------------------------------------------------------------------------------- 1 | https://github.com/kevquirk/simple.css -------------------------------------------------------------------------------- /simple.css/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/simple.css/snippet.txt -------------------------------------------------------------------------------- /snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/snippet.txt -------------------------------------------------------------------------------- /stylize.css/link.txt: -------------------------------------------------------------------------------- 1 | https://vasanthv.github.io/stylize.css/ 2 | -------------------------------------------------------------------------------- /stylize.css/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/stylize.css/snippet.txt -------------------------------------------------------------------------------- /tacit/link.txt: -------------------------------------------------------------------------------- 1 | https://yegor256.github.io/tacit/ 2 | -------------------------------------------------------------------------------- /tacit/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/tacit/snippet.txt -------------------------------------------------------------------------------- /thebestmotherfucking/link.txt: -------------------------------------------------------------------------------- 1 | https://thebestmotherfucking.website -------------------------------------------------------------------------------- /thebestmotherfucking/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/thebestmotherfucking/snippet.txt -------------------------------------------------------------------------------- /tufte/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/tufte/link.txt -------------------------------------------------------------------------------- /tufte/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/tufte/snippet.txt -------------------------------------------------------------------------------- /vanillacss/link.txt: -------------------------------------------------------------------------------- 1 | https://vanillacss.com -------------------------------------------------------------------------------- /vanillacss/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/vanillacss/snippet.txt -------------------------------------------------------------------------------- /w3c-chocolate/link.txt: -------------------------------------------------------------------------------- 1 | https://www.w3.org/StyleSheets/Core/Overview 2 | -------------------------------------------------------------------------------- /w3c-chocolate/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/w3c-chocolate/snippet.txt -------------------------------------------------------------------------------- /w3c-traditional/link.txt: -------------------------------------------------------------------------------- 1 | https://www.w3.org/StyleSheets/Core/Overview 2 | -------------------------------------------------------------------------------- /w3c-traditional/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/w3c-traditional/snippet.txt -------------------------------------------------------------------------------- /water.css-dark/link.txt: -------------------------------------------------------------------------------- 1 | https://kognise.github.io/water.css/ -------------------------------------------------------------------------------- /water.css-dark/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/water.css-dark/snippet.txt -------------------------------------------------------------------------------- /water.css-light/link.txt: -------------------------------------------------------------------------------- 1 | https://kognise.github.io/water.css/ -------------------------------------------------------------------------------- /water.css-light/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/water.css-light/snippet.txt -------------------------------------------------------------------------------- /writ/link.txt: -------------------------------------------------------------------------------- 1 | https://writ.cmcenroe.me 2 | -------------------------------------------------------------------------------- /writ/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/writ/snippet.txt -------------------------------------------------------------------------------- /yorha/link.txt: -------------------------------------------------------------------------------- 1 | https://github.com/metakirby5/yorha 2 | -------------------------------------------------------------------------------- /yorha/snippet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/cssbed/HEAD/yorha/snippet.txt --------------------------------------------------------------------------------