├── .github ├── CODEOWNERS └── workflows │ ├── pr-build.yml │ ├── pr-merged.yml │ └── version-tag-build-master.yml ├── .gitignore ├── .sassrc ├── LICENSE ├── README.md ├── examples ├── blog-post.html └── index.html ├── images ├── alignment.png ├── animation.gif ├── fish-skeleton.png ├── fish-skeleton.svg ├── headers.png ├── image-shapes.png ├── images.png ├── line-widths.png ├── paragraphs.png ├── skeleton-cards.png ├── skellyCSS__full-logo.svg └── skellyCSS__logo.svg ├── index.html ├── main.js ├── package.json ├── package ├── LICENSE ├── README.md └── package.json ├── postcss.config.js ├── src ├── index.js └── style.scss └── vite.config.js /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/pr-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/.github/workflows/pr-build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-merged.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/.github/workflows/pr-merged.yml -------------------------------------------------------------------------------- /.github/workflows/version-tag-build-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/.github/workflows/version-tag-build-master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/.gitignore -------------------------------------------------------------------------------- /.sassrc: -------------------------------------------------------------------------------- 1 | { 2 | "includePaths": ["node_modules"] 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/README.md -------------------------------------------------------------------------------- /examples/blog-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/examples/blog-post.html -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/examples/index.html -------------------------------------------------------------------------------- /images/alignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/alignment.png -------------------------------------------------------------------------------- /images/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/animation.gif -------------------------------------------------------------------------------- /images/fish-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/fish-skeleton.png -------------------------------------------------------------------------------- /images/fish-skeleton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/fish-skeleton.svg -------------------------------------------------------------------------------- /images/headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/headers.png -------------------------------------------------------------------------------- /images/image-shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/image-shapes.png -------------------------------------------------------------------------------- /images/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/images.png -------------------------------------------------------------------------------- /images/line-widths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/line-widths.png -------------------------------------------------------------------------------- /images/paragraphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/paragraphs.png -------------------------------------------------------------------------------- /images/skeleton-cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/skeleton-cards.png -------------------------------------------------------------------------------- /images/skellyCSS__full-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/skellyCSS__full-logo.svg -------------------------------------------------------------------------------- /images/skellyCSS__logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/images/skellyCSS__logo.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/package.json -------------------------------------------------------------------------------- /package/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/package/LICENSE -------------------------------------------------------------------------------- /package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/package/README.md -------------------------------------------------------------------------------- /package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/package/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [require('autoprefixer')] 3 | }; 4 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/src/style.scss -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritterim/skellyCSS/HEAD/vite.config.js --------------------------------------------------------------------------------