├── .editorconfig ├── .gitignore ├── README.md ├── _config.yml ├── homepage-assets ├── favicon.png ├── homepage.js ├── jquery-3.4.1.min.js ├── logo.svg ├── mobile.css ├── preview.gif └── style.css ├── index.html ├── loaders ├── awesome-spin │ └── awesome-spin.css ├── blasting-circle │ └── blasting-circle.css ├── blasting-ripple │ └── blasting-ripple.css ├── block-spin │ └── block-spin.css ├── bouncing-circle │ └── bouncing-circle.css ├── box-rotation │ └── box-rotation.css ├── cascading-bars │ └── cascading-bars.css ├── clock │ └── clock.css ├── color-pulse-ball │ └── color-pulse-ball.css ├── double-circle │ └── double-circle.css ├── hour-glass │ └── hour-glass.css ├── quantum-spinner │ └── quantum-spinner.css ├── recursive-circle │ └── recursive-circle.css ├── rotating-plane │ └── rotating-plane.css ├── simple-circle │ └── simple-circle.css └── vars.css └── react ├── .babelrc ├── .gitignore ├── build └── index.js ├── package.json ├── readme.MD ├── src └── index.js ├── webpack.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | exclude: ["react"] -------------------------------------------------------------------------------- /homepage-assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/homepage-assets/favicon.png -------------------------------------------------------------------------------- /homepage-assets/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/homepage-assets/homepage.js -------------------------------------------------------------------------------- /homepage-assets/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/homepage-assets/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /homepage-assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/homepage-assets/logo.svg -------------------------------------------------------------------------------- /homepage-assets/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/homepage-assets/mobile.css -------------------------------------------------------------------------------- /homepage-assets/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/homepage-assets/preview.gif -------------------------------------------------------------------------------- /homepage-assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/homepage-assets/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/index.html -------------------------------------------------------------------------------- /loaders/awesome-spin/awesome-spin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/awesome-spin/awesome-spin.css -------------------------------------------------------------------------------- /loaders/blasting-circle/blasting-circle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/blasting-circle/blasting-circle.css -------------------------------------------------------------------------------- /loaders/blasting-ripple/blasting-ripple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/blasting-ripple/blasting-ripple.css -------------------------------------------------------------------------------- /loaders/block-spin/block-spin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/block-spin/block-spin.css -------------------------------------------------------------------------------- /loaders/bouncing-circle/bouncing-circle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/bouncing-circle/bouncing-circle.css -------------------------------------------------------------------------------- /loaders/box-rotation/box-rotation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/box-rotation/box-rotation.css -------------------------------------------------------------------------------- /loaders/cascading-bars/cascading-bars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/cascading-bars/cascading-bars.css -------------------------------------------------------------------------------- /loaders/clock/clock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/clock/clock.css -------------------------------------------------------------------------------- /loaders/color-pulse-ball/color-pulse-ball.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/color-pulse-ball/color-pulse-ball.css -------------------------------------------------------------------------------- /loaders/double-circle/double-circle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/double-circle/double-circle.css -------------------------------------------------------------------------------- /loaders/hour-glass/hour-glass.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/hour-glass/hour-glass.css -------------------------------------------------------------------------------- /loaders/quantum-spinner/quantum-spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/quantum-spinner/quantum-spinner.css -------------------------------------------------------------------------------- /loaders/recursive-circle/recursive-circle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/recursive-circle/recursive-circle.css -------------------------------------------------------------------------------- /loaders/rotating-plane/rotating-plane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/rotating-plane/rotating-plane.css -------------------------------------------------------------------------------- /loaders/simple-circle/simple-circle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/simple-circle/simple-circle.css -------------------------------------------------------------------------------- /loaders/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/loaders/vars.css -------------------------------------------------------------------------------- /react/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/react/.babelrc -------------------------------------------------------------------------------- /react/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /react/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/react/build/index.js -------------------------------------------------------------------------------- /react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/react/package.json -------------------------------------------------------------------------------- /react/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/react/readme.MD -------------------------------------------------------------------------------- /react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/react/src/index.js -------------------------------------------------------------------------------- /react/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/react/webpack.config.js -------------------------------------------------------------------------------- /react/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theanam/css-only-loaders/HEAD/react/yarn.lock --------------------------------------------------------------------------------